C# Class NUnitLite.Runner.ResultReporter

ResultReporter writes the NUnitLite results to a TextWriter.
Show file Open project: mono/NUnitLite Class Usage Examples

Public Methods

Method Description
PrintErrorReport ( ) : void

Prints the Error Report

PrintFullReport ( ) : void

Prints a full report of all results

PrintNotRunReport ( ) : void

Prints the Not Run Report

PrintSummaryReport ( ) : void

Prints the Summary Report

ReportResults ( ) : void

Produces the standard output reports.

ResultReporter ( ITestResult result, TextWriter writer ) : System.IO

Constructs an instance of ResultReporter

Private Methods

Method Description
PrintAllResults ( ITestResult result, string indent ) : void
PrintErrorResults ( ITestResult result ) : void
PrintNotRunResults ( ITestResult result ) : void
PrintTestProperties ( ITest test ) : void
WriteSingleResult ( ITestResult result ) : void

Method Details

PrintErrorReport() public method

Prints the Error Report
public PrintErrorReport ( ) : void
return void

PrintFullReport() public method

Prints a full report of all results
public PrintFullReport ( ) : void
return void

PrintNotRunReport() public method

Prints the Not Run Report
public PrintNotRunReport ( ) : void
return void

PrintSummaryReport() public method

Prints the Summary Report
public PrintSummaryReport ( ) : void
return void

ReportResults() public method

Produces the standard output reports.
public ReportResults ( ) : void
return void

ResultReporter() public method

Constructs an instance of ResultReporter
public ResultReporter ( ITestResult result, TextWriter writer ) : System.IO
result ITestResult The top-level result being reported
writer System.IO.TextWriter A TextWriter to which the report is written
return System.IO