Class TestProgressReporter
TestProgressReporter translates ITestListener events into the async callbacks that are used to inform the client software about the progress of a test run.
public class TestProgressReporter : ITestListener
- Inheritance
-
TestProgressReporter
- Implements
- Inherited Members
Constructors
TestProgressReporter(ICallbackEventHandler)
Initializes a new instance of the TestProgressReporter class.
public TestProgressReporter(ICallbackEventHandler handler)
Parameters
handler
ICallbackEventHandlerThe callback handler to be used for reporting progress.
Methods
TestFinished(ITestResult)
Called when a test has finished. Sends a result summary to the callback. to
public void TestFinished(ITestResult result)
Parameters
result
ITestResultThe result of the test
TestStarted(ITest)
Called when a test has just started
public void TestStarted(ITest test)
Parameters
test
ITestThe test that is starting