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