C# Class ParallelizeNunit.Core.ParallelListener

Inheritance: EventListener
Afficher le fichier Open project: Ancestry/ParallelizeNunit

Méthodes publiques

Méthode Description
IncreaseSkipped ( ) : void

Increases the number of skipped tests.

RunFinished ( Exception exception ) : void

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 ( Exception exception ) : void

Called when a test causes an unhandled exception.

Method Details

IncreaseSkipped() public méthode

Increases the number of skipped tests.
public IncreaseSkipped ( ) : void
Résultat void

RunFinished() public méthode

Called when a run is finished with an exception.
public RunFinished ( Exception exception ) : void
exception System.Exception /// The exception that was thrown. ///
Résultat void

RunFinished() public méthode

Called when a run is finished with a result.
public RunFinished ( NUnit.Core.TestResult result ) : void
result NUnit.Core.TestResult /// The result of the test run. ///
Résultat void

RunStarted() public méthode

Called when a run of tests is started.
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

SuiteFinished() public méthode

Called when the suite finished running.
public SuiteFinished ( NUnit.Core.TestResult result ) : void
result NUnit.Core.TestResult /// The result of the test run. ///
Résultat void

SuiteStarted() public méthode

Called when the test suite run is started.
public SuiteStarted ( NUnit.Core.TestName testName ) : void
testName NUnit.Core.TestName /// The test name. ///
Résultat void

TestFinished() public méthode

Called when an individual test has finished.
public TestFinished ( NUnit.Core.TestResult result ) : void
result NUnit.Core.TestResult /// The result. ///
Résultat void

TestOutput() public méthode

Called to communicate the output of a test run.
public TestOutput ( NUnit.Core.TestOutput testOutput ) : void
testOutput NUnit.Core.TestOutput /// The test output. ///
Résultat void

TestStarted() public méthode

Called when a test is started.
public TestStarted ( NUnit.Core.TestName testName ) : void
testName NUnit.Core.TestName /// The test name. ///
Résultat void

UnhandledException() public méthode

Called when a test causes an unhandled exception.
public UnhandledException ( Exception exception ) : void
exception System.Exception /// The exception that was unhandled. ///
Résultat void