forked from BilalY/Rasagar
13 lines
247 B
C#
13 lines
247 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.TestTools.TestRunner.TestRun
|
||
|
{
|
||
|
internal interface ITestJobRunner
|
||
|
{
|
||
|
string RunJob(TestJobData data);
|
||
|
bool CancelRun();
|
||
|
bool IsRunningJob();
|
||
|
TestJobData GetData();
|
||
|
}
|
||
|
}
|