SquareDash/Library/PackageCache/com.unity.test-framework@1.3.9/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

13 lines
350 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);
}
}