GlobalGameJame/Library/PackageCache/com.unity.test-framework@1.1.9/UnityEngine.TestRunner/Utils/ITestRunCallback.cs

13 lines
301 B
C#
Raw Normal View History

2020-01-31 15:10:04 +00:00
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);
}
}