C# 클래스 NUnitLite.Runner.ResultReporter

ResultReporter writes the NUnitLite results to a TextWriter.
파일 보기 프로젝트 열기: mono/NUnitLite 1 사용 예제들

공개 메소드들

메소드 설명
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

비공개 메소드들

메소드 설명
PrintAllResults ( ITestResult result, string indent ) : void
PrintErrorResults ( ITestResult result ) : void
PrintNotRunResults ( ITestResult result ) : void
PrintTestProperties ( ITest test ) : void
WriteSingleResult ( ITestResult result ) : void

메소드 상세

PrintErrorReport() 공개 메소드

Prints the Error Report
public PrintErrorReport ( ) : void
리턴 void

PrintFullReport() 공개 메소드

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

PrintNotRunReport() 공개 메소드

Prints the Not Run Report
public PrintNotRunReport ( ) : void
리턴 void

PrintSummaryReport() 공개 메소드

Prints the Summary Report
public PrintSummaryReport ( ) : void
리턴 void

ReportResults() 공개 메소드

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

ResultReporter() 공개 메소드

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
리턴 System.IO