IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
The ITestListener interface is used to receive notices of significant events while a test is running. It's single method accepts an Xml string, which may represent any event generated by the test framework, the driver or any of the runners internal to the engine. Use of Xml means that any driver and framework may add additional events and the engine will simply pass them on through this interface. More...
Public Member Functions | |
void | OnTestEvent (string report) |
Handle a progress report or other event. More... | |
The ITestListener interface is used to receive notices of significant events while a test is running. It's single method accepts an Xml string, which may represent any event generated by the test framework, the driver or any of the runners internal to the engine. Use of Xml means that any driver and framework may add additional events and the engine will simply pass them on through this interface.
void NUnit.Engine.ITestEventListener.OnTestEvent | ( | string | report | ) |
Handle a progress report or other event.
report | An XML progress report. |
Implemented in NUnit.Engine.Drivers.Tests.NUnit3FrameworkDriverTests.NullListener, NUnit.Engine.Drivers.Tests.NotRunnableFrameworkDriverTests.NullListener, NUnit.ConsoleRunner.TestEventHandler, and NUnit.Engine.RunTestsCallbackHandler.NullListener.
Referenced by NUnit.Engine.Drivers.TestEventAdapter.OnTestFinished(), NUnit.Engine.Drivers.TestEventAdapter.OnTestStarted(), NUnit.Engine.RunTestsCallbackHandler.ReportProgress(), and NUnit.Engine.Runners.MasterTestRunner.RunTests().