function assertLessThan

Asserts that a value is smaller than another value.

@since Method available since Release 3.1.0

Parameters

mixed $expected:

mixed $actual:

string $message:

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert/Functions.php, line 922

Code

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