Files
CartoonFPS/Library/PackageCache/com.unity.test-framework@dfdbd02f5918/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs

13 lines
350 B
C#
Raw Normal View History

2025-08-05 09:30:40 +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);
}
}