Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
$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".
TRUE if the assertion succeeded, FALSE otherwise.
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);
}