Files
Generic/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs

13 lines
350 B
C#
Raw Normal View History

2025-04-26 21:54:32 +01:00
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);
}
}