IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
The ITestListener interface is used internally to receive notifications of significant events while a test is being run. The events are propagated to clients by means of an AsyncCallback. NUnit extensions may also monitor these events. More...
Public Member Functions | |
void | TestStarted (ITest test) |
Called when a test has just started More... | |
void | TestFinished (ITestResult result) |
Called when a test has finished More... | |
The ITestListener interface is used internally to receive notifications of significant events while a test is being run. The events are propagated to clients by means of an AsyncCallback. NUnit extensions may also monitor these events.
void NUnit.Framework.Interfaces.ITestListener.TestStarted | ( | ITest | test | ) |
Called when a test has just started
test | The test that is starting |
Implemented in NUnit.Framework.Api.TestAssemblyRunnerTests, NUnitLite.TextRunner, NUnit.Framework.Internal.TestProgressReporter, NUnitLite.TeamCityEventListener, and NUnit.Framework.Internal.TestListener.
Referenced by NUnit.Framework.Internal.Execution.WorkItem.RunTest().
void NUnit.Framework.Interfaces.ITestListener.TestFinished | ( | ITestResult | result | ) |
Called when a test has finished
result | The result of the test |
Implemented in NUnit.Framework.Api.TestAssemblyRunnerTests, NUnitLite.TextRunner, NUnit.Framework.Internal.TestProgressReporter, NUnitLite.TeamCityEventListener, and NUnit.Framework.Internal.TestListener.
Referenced by NUnit.Framework.Internal.Execution.WorkItem.WorkItemComplete().