StellarXipher/Library/PackageCache/com.unity.test-framework@0a21eb82d95c/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs
2025-02-06 16:45:46 -05: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);
}
}