using System; namespace UnityEditor.TestTools.TestRunner.Api { internal interface ITestRunnerApi { string Execute(ExecutionSettings executionSettings); void RegisterCallbacks(T testCallbacks, int priority = 0) where T : ICallbacks; void UnregisterCallbacks(T testCallbacks) where T : ICallbacks; void RetrieveTestList(TestMode testMode, Action callback); } }