Activity log for bug #1325928

Date Who What changed Old value New value Message
2014-06-03 11:02:51 Dave Moor bug added bug
2014-06-03 11:12:55 Dave Moor description 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); 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); This is in v1.0
2014-06-03 11:33:40 Dave Moor nunitlite: status New Fix Committed
2014-06-03 11:33:45 Dave Moor nunitlite: status Fix Committed New