You are here

function greaterThanOrEqual in Zircon Profile 8

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

Returns a PHPUnit_Framework_Constraint_Or matcher object that wraps a PHPUnit_Framework_Constraint_IsEqual and a PHPUnit_Framework_Constraint_GreaterThan matcher object.

@since Method available since Release 3.1.0

Parameters

mixed $value:

Return value

PHPUnit_Framework_Constraint_Or

File

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

Code

function greaterThanOrEqual($value) {
  return call_user_func_array('PHPUnit_Framework_Assert::greaterThanOrEqual', func_get_args());
}