This repository has been archived on 2025-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
unity-cube-game/Library/PackageCache/com.unity.test-framework@1..../UnityEditor.TestRunner/Api/ITestRunnerApi.cs

13 lines
431 B
C#

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