C# 클래스 NUnit.Framework.Internal.TestSuiteResult

Represents the result of running a test suite
상속: NUnit.Framework.Internal.TestResult
파일 보기 프로젝트 열기: pjcollins/Andr.Unit 1 사용 예제들

공개 메소드들

메소드 설명
AddResult ( NUnit.Framework.Internal.TestResult result ) : void

Add a child result

RecordException ( Exception ex, FailureSite site ) : void

Set the test result based on the type of exception thrown and the site of the Failure.

TestSuiteResult ( TestSuite suite ) : System

Construct a TestSuiteResult base on a TestSuite

메소드 상세

AddResult() 공개 메소드

Add a child result
public AddResult ( NUnit.Framework.Internal.TestResult result ) : void
result NUnit.Framework.Internal.TestResult The child result to be added
리턴 void

RecordException() 공개 메소드

Set the test result based on the type of exception thrown and the site of the Failure.
public RecordException ( Exception ex, FailureSite site ) : void
ex System.Exception The exception that was thrown
site FailureSite The FailureSite
리턴 void

TestSuiteResult() 공개 메소드

Construct a TestSuiteResult base on a TestSuite
public TestSuiteResult ( TestSuite suite ) : System
suite TestSuite The TestSuite to which the result applies
리턴 System