12 lines
389 B
C#
12 lines
389 B
C#
|
namespace UnityEditor.TestTools.TestRunner.CommandLineTest
|
||
|
{
|
||
|
internal interface IExecuter
|
||
|
{
|
||
|
string InitializeAndExecuteRun(string[] commandLineArgs);
|
||
|
void ExitIfRunIsCompleted();
|
||
|
ExecutionSettings BuildExecutionSettings(string[] commandLineArgs);
|
||
|
void SetUpCallbacks(ExecutionSettings executionSettings);
|
||
|
void ExitOnCompileErrors();
|
||
|
}
|
||
|
}
|