You are here

function assertThat in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertThat()

Evaluates a PHPUnit_Framework_Constraint matcher object.

@since Method available since Release 3.0.0

Parameters

mixed$value:

PHPUnit_Framework_Constraint $constraint:

string $message:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 1642

Code

function assertThat($value, PHPUnit_Framework_Constraint $constraint, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertThat', func_get_args());
}