暫無描述
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 639B

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