ITestRunCallback.cs 301 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 using NUnit.Framework.Interfaces; namespace UnityEngine.TestRunner { public interface ITestRunCallback { void RunStarted(ITest testsToRun); void RunFinished(ITestResult testResults); void TestStarted(ITest test); void TestFinished(ITestResult result); } }