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

StringConstraint is the abstract base for constraints that operate on strings. It supports the IgnoreCase modifier for string operations.
상속: Constraint
파일 보기 프로젝트 열기: jbtule/PclUnit

보호된 프로퍼티들

프로퍼티 타입 설명
caseInsensitive bool
expected string

공개 메소드들

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

Constructs a StringConstraint given an expected value

메소드 상세

StringConstraint() 공개 메소드

Constructs a StringConstraint given an expected value
public StringConstraint ( string expected ) : System
expected string The expected value
리턴 System

프로퍼티 상세

caseInsensitive 보호되어 있는 프로퍼티

Indicates whether tests should be case-insensitive
protected bool caseInsensitive
리턴 bool

expected 보호되어 있는 프로퍼티

The expected value
protected string expected
리턴 string