PHP Class IdenticalExpectation, simpletest

Inheritance: extends EqualExpectation
显示文件 Open project: simpletest/simpletest Class Usage Examples

Public Methods

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

Method Details

__construct() public method

Sets the value to compare against.
public __construct ( mixed $value, string $message = '%s' )
$value mixed Test value to match.
$message string Customised message on failure.

test() public method

Tests the expectation. True if it exactly matches the held value.
public test ( mixed $compare ) : boolean
$compare mixed 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.