VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.testtools.codecoverage/Editor/ICoverageReporter.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

16 lines
540 B
C#

using UnityEditor.TestTools.TestRunner.Api;
namespace UnityEditor.TestTools.CodeCoverage
{
interface ICoverageReporter
{
ICoverageReporterFilter GetReporterFilter();
void OnInitialise(CoverageSettings settings);
void OnRunStarted(ITestAdaptor testsToRun);
void OnRunFinished(ITestResultAdaptor testResults);
void OnTestStarted(ITestAdaptor test);
void OnTestFinished(ITestResultAdaptor result);
void OnBeforeAssemblyReload();
void OnCoverageRecordingPaused();
}
}