function assertNotTrue in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertNotTrue()
Asserts that a condition is not true.
Parameters
bool $condition:
string $message:
Throws
PHPUnit_Framework_AssertionFailedError
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 653
Code
function assertNotTrue($condition, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertNotTrue', func_get_args());
}