SW 중심대학 OSS GIT 서버
박건태, 이승준, 고기완, 이준호
새로운 배포
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System.Collections;using NUnit.Framework.Interfaces;
namespace UnityEngine.TestTools{ /// <summary>
/// When implemented by an attribute, this interface implemented to provide actions to execute before setup and after teardown of tests.
/// </summary>
public interface IOuterUnityTestAction { /// <summary>Executed before each test is run</summary>
/// <param name="test">The test that is going to be run.</param>
IEnumerator BeforeTest(ITest test);
/// <summary>Executed after each test is run</summary>
/// <param name="test">The test that has just been run.</param>
IEnumerator AfterTest(ITest test); }}
|