IUtpMessageReporter.cs 516 B

1234567891011121314
  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 ReportAssemblyCompilationErrors(string assembly, IEnumerable<CompilerMessage> errorCompilerMessages);
  9. void ReportTestFinished(ITestResultAdaptor result);
  10. void ReportTestRunStarted(ITestAdaptor testsToRun);
  11. void ReportTestStarted(ITestAdaptor test);
  12. }
  13. }