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

EndsWithConstraint can test whether a string ends with an expected substring.
상속: StringConstraint
파일 보기 프로젝트 열기: jbtule/PclUnit

공개 메소드들

메소드 설명
EndsWithConstraint ( string expected ) : System

Initializes a new instance of the T:EndsWithConstraint class.

Matches ( object actual ) : bool

Test whether the constraint is matched by the actual value. This is a template method, which calls the IsMatch method of the derived class.

WriteDescriptionTo ( MessageWriter writer ) : void

Write the constraint description to a MessageWriter

메소드 상세

EndsWithConstraint() 공개 메소드

Initializes a new instance of the T:EndsWithConstraint class.
public EndsWithConstraint ( string expected ) : System
expected string The expected string
리턴 System

Matches() 공개 메소드

Test whether the constraint is matched by the actual value. This is a template method, which calls the IsMatch method of the derived class.
public Matches ( object actual ) : bool
actual object
리턴 bool

WriteDescriptionTo() 공개 메소드

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