protected function DrupalTestCase::assertTrue

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.

515 calls to DrupalTestCase::assertTrue()

File

drupal/modules/simpletest/drupal_web_test_case.php, line 283

Class

DrupalTestCase
Base class for Drupal 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);
}