You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
540 B
C#
16 lines
540 B
C#
1 year ago
|
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();
|
||
|
}
|
||
|
}
|