13 lines
301 B
C#
13 lines
301 B
C#
|
using NUnit.Framework.Interfaces;
|
||
|
|
||
|
namespace UnityEngine.TestRunner
|
||
|
{
|
||
|
public interface ITestRunCallback
|
||
|
{
|
||
|
void RunStarted(ITest testsToRun);
|
||
|
void RunFinished(ITestResult testResults);
|
||
|
void TestStarted(ITest test);
|
||
|
void TestFinished(ITestResult result);
|
||
|
}
|
||
|
}
|