Comment 0 for bug 1325928

Revision history for this message
Dave Moor (dave-l) wrote :

One of the possible constructor parameters of the TextUI class is a object implementing the ITestListener interface.

This would allow programmatic feedback of the test results, however the object is then not used when the tests are actually run.

The one line change to fix this is on line 284 in TextUI.cs

-- ITestResult result = runner.Run(this, filter);
++ ITestResult result = runner.Run(listener, filter);