C# Класс ParallelizeNunit.Core.ParallelListener

Наследование: EventListener
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

IncreaseSkipped() публичный Метод

Increases the number of skipped tests.
public IncreaseSkipped ( ) : void
Результат void

RunFinished() публичный Метод

Called when a run is finished with an exception.
public RunFinished ( Exception exception ) : void
exception System.Exception /// The exception that was thrown. ///
Результат void

RunFinished() публичный Метод

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. ///
Результат void

RunStarted() публичный Метод

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. ///
Результат void

SuiteFinished() публичный Метод

Called when the suite finished running.
public SuiteFinished ( NUnit.Core.TestResult result ) : void
result NUnit.Core.TestResult /// The result of the test run. ///
Результат void

SuiteStarted() публичный Метод

Called when the test suite run is started.
public SuiteStarted ( NUnit.Core.TestName testName ) : void
testName NUnit.Core.TestName /// The test name. ///
Результат void

TestFinished() публичный Метод

Called when an individual test has finished.
public TestFinished ( NUnit.Core.TestResult result ) : void
result NUnit.Core.TestResult /// The result. ///
Результат void

TestOutput() публичный Метод

Called to communicate the output of a test run.
public TestOutput ( NUnit.Core.TestOutput testOutput ) : void
testOutput NUnit.Core.TestOutput /// The test output. ///
Результат void

TestStarted() публичный Метод

Called when a test is started.
public TestStarted ( NUnit.Core.TestName testName ) : void
testName NUnit.Core.TestName /// The test name. ///
Результат void

UnhandledException() публичный Метод

Called when a test causes an unhandled exception.
public UnhandledException ( Exception exception ) : void
exception System.Exception /// The exception that was unhandled. ///
Результат void