xyi/Library/PackageCache/com.unity.toolchain.linux-x86_64@5a6ce31f8a65/Tests/Editor/EditorExampleTest.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

23 lines
538 B
C#

using UnityEngine;
using UnityEditor;
using UnityEngine.TestTools;
using NUnit.Framework;
using System.Collections;
class EditorExampleTest {
[Test]
public void EditorSampleTestSimplePasses() {
// Use the Assert class to test conditions.
}
// A UnityTest behaves like a coroutine in PlayMode
// and allows you to yield null to skip a frame in EditMode
[UnityTest]
public IEnumerator EditorSampleTestWithEnumeratorPasses() {
// Use the Assert class to test conditions.
// yield to skip a frame
yield return null;
}
}