Files
CityBuilder/Library/PackageCache/com.unity.test-framework@dfdbd02f5918/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs
SHOUTING_PIRATE 1c91215efd initial commit
2025-07-07 20:59:04 +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);
}
}