You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
654 B
24 lines
654 B
|
|
if (!function_exists('assertThat')) { |
|
/** |
|
* Make an assertion and throw {@link Hamcrest_AssertionError} if it fails. |
|
* |
|
* Example: |
|
* <pre> |
|
* //With an identifier |
|
* assertThat("assertion identifier", $apple->flavour(), equalTo("tasty")); |
|
* //Without an identifier |
|
* assertThat($apple->flavour(), equalTo("tasty")); |
|
* //Evaluating a boolean expression |
|
* assertThat("some error", $a > $b); |
|
* </pre> |
|
*/ |
|
function assertThat() |
|
{ |
|
$args = func_get_args(); |
|
call_user_func_array( |
|
array('Hamcrest\MatcherAssert', 'assertThat'), |
|
$args |
|
); |
|
} |
|
}
|
|
|