Méthode | Description | |
---|---|---|
IncreaseSkipped ( ) : void |
Increases the number of skipped tests.
|
|
RunFinished ( |
Called when a run is finished with an exception.
|
|
RunFinished ( NUnit.Core.TestResult result ) : void |
Called when a run is finished with a result.
|
|
RunStarted ( string name, int testCount ) : void |
Called when a run of tests is started.
|
|
SuiteFinished ( NUnit.Core.TestResult result ) : void |
Called when the suite finished running.
|
|
SuiteStarted ( NUnit.Core.TestName testName ) : void |
Called when the test suite run is started.
|
|
TestFinished ( NUnit.Core.TestResult result ) : void |
Called when an individual test has finished.
|
|
TestOutput ( NUnit.Core.TestOutput testOutput ) : void |
Called to communicate the output of a test run.
|
|
TestStarted ( NUnit.Core.TestName testName ) : void |
Called when a test is started.
|
|
UnhandledException ( |
Called when a test causes an unhandled exception.
|
public RunFinished ( |
||
exception | /// The exception that was thrown. /// | |
Résultat | void |
public RunFinished ( NUnit.Core.TestResult result ) : void | ||
result | NUnit.Core.TestResult | /// The result of the test run. /// |
Résultat | void |
public RunStarted ( string name, int testCount ) : void | ||
name | string | /// The name of the tests. /// |
testCount | int | /// The number of tests to be run. /// |
Résultat | void |
public SuiteFinished ( NUnit.Core.TestResult result ) : void | ||
result | NUnit.Core.TestResult | /// The result of the test run. /// |
Résultat | void |
public SuiteStarted ( NUnit.Core.TestName testName ) : void | ||
testName | NUnit.Core.TestName | /// The test name. /// |
Résultat | void |
public TestFinished ( NUnit.Core.TestResult result ) : void | ||
result | NUnit.Core.TestResult | /// The result. /// |
Résultat | void |
public TestOutput ( NUnit.Core.TestOutput testOutput ) : void | ||
testOutput | NUnit.Core.TestOutput | /// The test output. /// |
Résultat | void |
public TestStarted ( NUnit.Core.TestName testName ) : void | ||
testName | NUnit.Core.TestName | /// The test name. /// |
Résultat | void |
public UnhandledException ( |
||
exception | /// The exception that was unhandled. /// | |
Résultat | void |