You are here

function assertLessThanOrEqual in Zircon Profile 8

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

Asserts that a value is smaller than or equal to another value.

@since Method available since Release 3.1.0

Parameters

mixed $expected:

mixed $actual:

string $message:

File

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

Code

function assertLessThanOrEqual($expected, $actual, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertLessThanOrEqual', func_get_args());
}