polygone/Library/PackageCache/com.unity.test-framework@1.1.24/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs
2021-08-02 05:44:37 -04:00

13 lines
414 B
C#

using System.Collections.Generic;
using UnityEditor.Compilation;
using UnityEditor.TestTools.TestRunner.Api;
namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
{
internal interface IUtpMessageReporter
{
void ReportTestFinished(ITestResultAdaptor result);
void ReportTestRunStarted(ITestAdaptor testsToRun);
void ReportTestStarted(ITestAdaptor test);
}
}