C# Class NUnitLite.Runner.ResultReporter

ResultReporter writes the NUnitLite results to a TextWriter.
Afficher le fichier Open project: mono/NUnitLite Class Usage Examples

Méthodes publiques

Méthode 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

Méthode 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 méthode

Prints the Error Report
public PrintErrorReport ( ) : void
Résultat void

PrintFullReport() public méthode

Prints a full report of all results
public PrintFullReport ( ) : void
Résultat void

PrintNotRunReport() public méthode

Prints the Not Run Report
public PrintNotRunReport ( ) : void
Résultat void

PrintSummaryReport() public méthode

Prints the Summary Report
public PrintSummaryReport ( ) : void
Résultat void

ReportResults() public méthode

Produces the standard output reports.
public ReportResults ( ) : void
Résultat void

ResultReporter() public méthode

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
Résultat System.IO