using System; using NUnit.Framework; namespace UnityEngine.TestTools { /// /// The `UnitySetUp` and attributes are identical to the standard `SetUp` and `TearDown` attributes, with the exception that they allow for . The `UnitySetUp` and `UnityTearDown` attributes expect a return type of [IEnumerator](https://docs.microsoft.com/en-us/dotnet/api/system.collections.ienumerator?view=netframework-4.8). /// /// ///public class SetUpTearDownExample /// { /// [UnitySetUp] /// public IEnumerator SetUp() /// { /// yield return new EnterPlayMode(); /// } /// /// [Test] /// public void MyTest() /// { /// Debug.Log("This runs inside playmode"); /// } /// /// [UnityTearDown] /// public IEnumerator TearDown() /// { /// yield return new ExitPlayMode(); /// } /// } /// /// /// [AttributeUsage(AttributeTargets.Method)] public class UnitySetUpAttribute : NUnitAttribute { } }