C# 클래스 Microsoft.Silverlight.Testing.Service.WebTestReportingProvider

A test service that reports test run results.
파일 보기 프로젝트 열기: garyjohnson/wpnest 1 사용 예제들

공개 메소드들

메소드 설명
ReportFinalResult ( Action callback, bool failure, int failures, int totalScenarios, string message ) : void

Begins a call to the test service to report a test run's results.

WebTestReportingProvider ( TestServiceProvider testService ) : System

Initializes a new reporting provider instance.

WriteLog ( Action callback, string logName, string content ) : void

Begins a call to the test service to write to the log.

메소드 상세

ReportFinalResult() 공개 메소드

Begins a call to the test service to report a test run's results.
public ReportFinalResult ( Action callback, bool failure, int failures, int totalScenarios, string message ) : void
callback Action The callback, used to read or verify results /// from the service call.
failure bool A value indicating whether the test run was a /// failure.
failures int The failed scenario count.
totalScenarios int The total scenario count.
message string Any message to report along with the failure.
리턴 void

WebTestReportingProvider() 공개 메소드

Initializes a new reporting provider instance.
public WebTestReportingProvider ( TestServiceProvider testService ) : System
testService TestServiceProvider The test service.
리턴 System

WriteLog() 공개 메소드

Begins a call to the test service to write to the log.
public WriteLog ( Action callback, string logName, string content ) : void
callback Action The callback, used to read or verify results /// from the service call.
logName string The name of the log to write.
content string The log file content.
리턴 void