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.
12 lines
424 B
12 lines
424 B
using System; |
|
|
|
namespace UnityEditor.TestTools.TestRunner.Api |
|
{ |
|
internal interface ITestRunnerApi |
|
{ |
|
string Execute(ExecutionSettings executionSettings); |
|
void RegisterCallbacks<T>(T testCallbacks, int priority = 0) where T : ICallbacks; |
|
void UnregisterCallbacks<T>(T testCallbacks) where T : ICallbacks; |
|
void RetrieveTestList(TestMode testMode, Action<ITestAdaptor> callback); |
|
} |
|
}
|
|
|