C# 클래스 ParallelizeNunit.Core.ParallelListener

상속: EventListener
파일 보기 프로젝트 열기: Ancestry/ParallelizeNunit

공개 메소드들

메소드 설명
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