function assertAttributeLessThanOrEqual in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertAttributeLessThanOrEqual()
Asserts that an attribute is smaller than or equal to another value.
@since Method available since Release 3.1.0
Parameters
mixed $expected:
string $actualAttributeName:
string $actualClassOrObject:
string $message:
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 293
Code
function assertAttributeLessThanOrEqual($expected, $actualAttributeName, $actualClassOrObject, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeLessThanOrEqual', func_get_args());
}