This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.testtools.codecov.../Editor/ICoverageReporter.cs

16 lines
540 B
C#
Raw Permalink Normal View History

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();
}
}