1 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

core/modules/simpletest/backdrop_web_test_case.php, line 496

Class

BackdropTestCase
Base class for Backdrop tests.

Code

protected function pass($message = NULL, $group = 'Other') {
  return $this->assert(TRUE, $message, $group);
}