ITestRunCallback.cs 301 B

123456789101112
  1. using NUnit.Framework.Interfaces;
  2. namespace UnityEngine.TestRunner
  3. {
  4. public interface ITestRunCallback
  5. {
  6. void RunStarted(ITest testsToRun);
  7. void RunFinished(ITestResult testResults);
  8. void TestStarted(ITest test);
  9. void TestFinished(ITestResult result);
  10. }
  11. }