OuterUnityTestAction
is a wrapper outside of the tests, which allows for any tests with this attribute to run code before and after the tests. This method allows for yielding commands in the same way as UnityTest
. The attribute must inherit the NUnit
attribute and implement IOuterUnityTestAction
.
using System.Collections;
using NUnit.Framework;
using NUnit.Framework.Interfaces;
using UnityEngine;
using UnityEngine.TestTools;
public class MyTestClass
{
[UnityTest, MyOuterActionAttribute]
public IEnumerator MyTestInsidePlaymode()
{
Assert.IsTrue(Application.isPlaying);
yield return null;
}
}
public class MyOuterActionAttribute : NUnitAttribute, IOuterUnityTestAction
{
public IEnumerator BeforeTest(ITest test)
{
yield return new EnterPlayMode();
}
public IEnumerator AfterTest(ITest test)
{
yield return new ExitPlayMode();
}
}
Unity outer test action is not rerun on domain reload but non-Unity action attributes are:
using NUnit.Framework.Interfaces;
public class TestActionOnSuiteAttribute : NUnitAttribute, ITestAction
{
public void BeforeTest(ITest test)
{
Debug.Log("TestAction OnSuite BeforeTest");
}
public void AfterTest(ITest test)
{
}
public ActionTargets Targets { get { return ActionTargets.Suite; } }
}
public class TestActionOnTestAttribute : NUnitAttribute, ITestAction
{
public void BeforeTest(ITest test)
{
Debug.Log("TestAction OnTest BeforeTest");
}
public void AfterTest(ITest test)
{
Debug.Log("TestAction OnTest AfterTest");
}
public ActionTargets Targets { get { return ActionTargets.Test; } }
}
public class OuterTestAttribute : NUnitAttribute, IOuterUnityTestAction
{
public IEnumerator BeforeTest(ITest test)
{
Debug.Log("OuterTestAttribute BeforeTest");
yield return null;
}
public IEnumerator AfterTest(ITest test)
{
Debug.Log("OuterTestAttribute AfterTest");
yield return null;
}
}
[TestActionOnSuite]
public class ActionOrderTestBase
{
[Test, OuterTest, TestActionOnTest]
public void UnitTest()
{
Debug.Log("Test");
}
[UnityTest, OuterTest, TestActionOnTest]
public IEnumerator UnityTestWithDomainReload()
{
Log("Test part 1");
yield return new EnterPlayMode();
//Domain reload
yield return new ExitPlayMode();
Log("Test part 2");
}
}
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.