1.20.x backdrop_web_test_case.php | protected BackdropTestCase::pass($message = NULL, $group = 'Other') |
Fire an assertion that is always positive.
Parameters
$message: The message to display along with the assertion.
$group: The type of assertion - examples are "Browser", "PHP".
Return value
TRUE.:
File
- modules/
simpletest/ backdrop_web_test_case.php, line 505
Class
- BackdropTestCase
- Base class for Backdrop tests.
Code
protected function pass($message = NULL, $group = 'Other') {
return $this->assert(TRUE, $message, $group);
}