ICallbacks.cs 297 B

12345678910
  1. namespace UnityEditor.TestTools.TestRunner.Api
  2. {
  3. public interface ICallbacks
  4. {
  5. void RunStarted(ITestAdaptor testsToRun);
  6. void RunFinished(ITestResultAdaptor result);
  7. void TestStarted(ITestAdaptor test);
  8. void TestFinished(ITestResultAdaptor result);
  9. }
  10. }