PHP 클래스 IsAExpectation, simpletest

상속: extends SimpleExpectation
파일 보기 프로젝트 열기: simpletest/simpletest 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( string $type, string $message = '%s' ) Sets the type to compare with.
test ( string $compare ) : boolean Tests the expectation. True if the type or class matches the string value.
testMessage ( mixed $compare ) : string Returns a human readable test message.

보호된 메소드들

메소드 설명
canonicalType ( string $type ) : string Coerces type name into a is_*() match.
getType ( ) : string Accessor for type to check against.

메소드 상세

__construct() 공개 메소드

Sets the type to compare with.
public __construct ( string $type, string $message = '%s' )
$type string Type or class name.
$message string Customised message on failure.

canonicalType() 보호된 메소드

Coerces type name into a is_*() match.
protected canonicalType ( string $type ) : string
$type string User type.
리턴 string Simpler type.

getType() 보호된 메소드

Accessor for type to check against.
protected getType ( ) : string
리턴 string Type or class name.

test() 공개 메소드

Tests the expectation. True if the type or class matches the string value.
public test ( string $compare ) : boolean
$compare string Comparison value.
리턴 boolean True if correct.

testMessage() 공개 메소드

Returns a human readable test message.
public testMessage ( mixed $compare ) : string
$compare mixed Comparison value.
리턴 string Description of success or failure.