KitchenChaos/Library/PackageCache/com.unity.test-framework@1.3.3/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs

14 lines
384 B
C#

using System;
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);
void ReportRunFinished();
}
}