No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ICallbacksDelegator.cs 705B

1234567891011121314151617181920
  1. using System;
  2. using NUnit.Framework.Interfaces;
  3. namespace UnityEditor.TestTools.TestRunner.Api
  4. {
  5. internal interface ICallbacksDelegator
  6. {
  7. void RunStarted(ITest testsToRun);
  8. void RunStartedRemotely(byte[] testsToRunData);
  9. void RunFinished(ITestResult testResults);
  10. void RunFinishedRemotely(byte[] testResultsData);
  11. void RunFailed(string failureMessage);
  12. void TestStarted(ITest test);
  13. void TestStartedRemotely(byte[] testStartedData);
  14. void TestFinished(ITestResult result);
  15. void TestFinishedRemotely(byte[] testResultsData);
  16. void TestTreeRebuild(ITest test);
  17. void SetTestRunFilter(ITestFilter filter);
  18. }
  19. }