Interface ITestRunCallback
Interface for getting callsbacks on test progress directly from NUnit. This is available both in the editor and directly in the runtime. It is registered by using TestRunCallbackAttribute.
네임스페이스: UnityEngine.TestRunner
어셈블리: solution.dll
구문
public interface ITestRunCallback
메서드
이름 | 설명 |
---|---|
RunFinished(ITestResult) | A callback invoked when a test run is finished. |
RunStarted(ITest) | A callback invoked when a test run is started. |
TestFinished(ITestResult) | A callback invoked when each individual node of the test tree has finished executing. |
TestStarted(ITest) | A callback invoked when each individual node of the test tree has started executing. |