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

IUtpMessageReporter.cs 401B

12345678910111213
  1. using System.Collections.Generic;
  2. using UnityEditor.Compilation;
  3. using UnityEditor.TestTools.TestRunner.Api;
  4. namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
  5. {
  6. internal interface IUtpMessageReporter
  7. {
  8. void ReportTestFinished(ITestResultAdaptor result);
  9. void ReportTestRunStarted(ITestAdaptor testsToRun);
  10. void ReportTestStarted(ITestAdaptor test);
  11. }
  12. }