PHP Class PatternExpectation, simpletest

Inheritance: extends SimpleExpectation
Exibir arquivo Open project: simpletest/simpletest Class Usage Examples

Public Methods

Method Description
__construct ( string $pattern, string $message = '%s' ) Sets the value to compare against.
test ( string $compare ) : boolean Tests the expectation. True if the Perl regex matches the comparison value.
testMessage ( mixed $compare ) : string Returns a human readable test message.

Protected Methods

Method Description
describePatternMatch ( string $pattern, string $subject ) Describes a pattern match including the string found and it's position.
getPattern ( ) : string Accessor for the pattern.

Method Details

__construct() public method

Sets the value to compare against.
public __construct ( string $pattern, string $message = '%s' )
$pattern string Pattern to search for.
$message string Customised message on failure.

describePatternMatch() protected method

Describes a pattern match including the string found and it's position.
protected describePatternMatch ( string $pattern, string $subject )
$pattern string Regex to match against.
$subject string Subject to search.

getPattern() protected method

Accessor for the pattern.
protected getPattern ( ) : string
return string Perl regex as string.

test() public method

Tests the expectation. True if the Perl regex matches the comparison value.
public test ( string $compare ) : boolean
$compare string Comparison value.
return boolean True if correct.

testMessage() public method

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