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.

ITestJobDataHolder.cs 349B

123456789101112
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.TestRun
  3. {
  4. internal interface ITestJobDataHolder
  5. {
  6. void RegisterRun(ITestJobRunner runner, TestJobData data);
  7. void UnregisterRun(ITestJobRunner runner, TestJobData data);
  8. ITestJobRunner GetRunner(string guid);
  9. ITestJobRunner[] GetAllRunners();
  10. }
  11. }