C# 클래스 PclUnit.Constraints.Pieces.ThrowsConstraint

ThrowsConstraint is used to test the exception thrown by a delegate by applying a constraint to it.
상속: PrefixConstraint
파일 보기 프로젝트 열기: jbtule/PclUnit

공개 메소드들

메소드 설명
Matches ( ActualValueDelegate del ) : bool

Converts an ActualValueDelegate to a TestDelegate before calling the primary overload.

Matches ( object actual ) : bool

Executes the code of the delegate and captures any exception. If a non-null base constraint was provided, it applies that constraint to the exception.

ThrowsConstraint ( Constraint baseConstraint ) : System

Initializes a new instance of the T:ThrowsConstraint class, using a constraint to be applied to the exception.

WriteActualValueTo ( MessageWriter writer ) : void

Write the actual value for a failing constraint test to a MessageWriter. The default implementation simply writes the raw value of actual, leaving it to the writer to perform any formatting.

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

보호된 메소드들

메소드 설명
GetStringRepresentation ( ) : string

Returns the string representation of this constraint

메소드 상세

GetStringRepresentation() 보호된 메소드

Returns the string representation of this constraint
protected GetStringRepresentation ( ) : string
리턴 string

Matches() 공개 메소드

Converts an ActualValueDelegate to a TestDelegate before calling the primary overload.
public Matches ( ActualValueDelegate del ) : bool
del ActualValueDelegate
리턴 bool

Matches() 공개 메소드

Executes the code of the delegate and captures any exception. If a non-null base constraint was provided, it applies that constraint to the exception.
public Matches ( object actual ) : bool
actual object A delegate representing the code to be tested
리턴 bool

ThrowsConstraint() 공개 메소드

Initializes a new instance of the T:ThrowsConstraint class, using a constraint to be applied to the exception.
public ThrowsConstraint ( Constraint baseConstraint ) : System
baseConstraint Constraint A constraint to apply to the caught exception.
리턴 System

WriteActualValueTo() 공개 메소드

Write the actual value for a failing constraint test to a MessageWriter. The default implementation simply writes the raw value of actual, leaving it to the writer to perform any formatting.
public WriteActualValueTo ( MessageWriter writer ) : void
writer MessageWriter The writer on which the actual value is displayed
리턴 void

WriteDescriptionTo() 공개 메소드

Write the constraint description to a MessageWriter
public WriteDescriptionTo ( MessageWriter writer ) : void
writer MessageWriter The writer on which the description is displayed
리턴 void