C# Class ParallelizeNunit.Core.ParallelListener

Inheritance: EventListener
Datei anzeigen Open project: Ancestry/ParallelizeNunit

Public Methods

Method 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 method

Increases the number of skipped tests.
public IncreaseSkipped ( ) : void
return void

RunFinished() public method

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

RunFinished() public method

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. ///
return void

RunStarted() public method

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. ///
return void

SuiteFinished() public method

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

SuiteStarted() public method

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

TestFinished() public method

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

TestOutput() public method

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

TestStarted() public method

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

UnhandledException() public method

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