1.20.x backdrop_web_test_case.php | protected BackdropTestCase::assertTrue($value, $message = '', $group = 'Other') |
Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
Parameters
$value: The value on which the assertion is to be done.
$message: The message to display along with the assertion.
$group: The type of assertion - examples are "Browser", "PHP".
Return value
TRUE if the assertion succeeded, FALSE otherwise.:
File
- modules/
simpletest/ backdrop_web_test_case.php, line 371
Class
- BackdropTestCase
- Base class for Backdrop tests.
Code
protected function assertTrue($value, $message = '', $group = 'Other') {
return $this->assert((bool) $value, $message ? $message : t('Value @value is TRUE.', array('@value' => var_export($value, TRUE))), $group);
}