Method | Description | |
---|---|---|
TeamCityEventListener ( ) : System |
Default constructor using Console.Out This constructor must be called before Console.Out is redirected in order to work correctly under TeamCity. |
|
TeamCityEventListener ( |
Construct a TeamCityEventListener specifying a TextWriter. Used for testing.
|
|
TestFinished ( ITestResult result ) : void |
Called when a test has finished
|
|
TestOutput ( TestOutput output ) : void |
Called when a test produces output for immediate display
|
|
TestStarted ( ITest test ) : void |
Called when a test has just started
|
Method | Description | |
---|---|---|
Escape ( string input ) : string | ||
TC_TestFailed ( string name, string message, string details ) : void | ||
TC_TestFinished ( string name, double duration ) : void | ||
TC_TestIgnored ( string name, string reason ) : void | ||
TC_TestStarted ( string name ) : void | ||
TC_TestSuiteFinished ( string name ) : void | ||
TC_TestSuiteStarted ( string name ) : void |
public TeamCityEventListener ( |
||
outWriter | The TextWriter to receive normal messages. | |
return | System |
public TestFinished ( ITestResult result ) : void | ||
result | ITestResult | The result of the test |
return | void |
public TestOutput ( TestOutput output ) : void | ||
output | NUnit.Framework.Interfaces.TestOutput | A TestOutput object containing the text to display |
return | void |
public TestStarted ( ITest test ) : void | ||
test | ITest | The test that is starting |
return | void |