You are here

protected function TestBase::assertFalse in Drupal 8

Check to see if a value is false.

False values are: empty string, 0, NULL, and FALSE.

Parameters

$value: The value on which the assertion is to be done.

$message: (optional) A message to display with the assertion. Do not translate messages: use \Drupal\Component\Render\FormattableMarkup to embed variables in the message text, not t(). If left blank, a default message will be displayed.

$group: (optional) The group this message is in, which is displayed in a column in test output. Use 'Debug' to indicate this is debugging output. Do not translate this string. Defaults to 'Other'; most tests do not override this default.

Return value

TRUE if the assertion succeeded, FALSE otherwise.

30 calls to TestBase::assertFalse()
CacheTestBase::assertCacheRemoved in core/modules/system/src/Tests/Cache/CacheTestBase.php
Asserts that a cache entry has been removed.
ContentTranslationUITestBase::doTestOutdatedStatus in core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php
Tests up-to-date status tracking.
ContentTranslationUITestBase::doTestPublishedStatus in core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php
Tests the translation publishing status.
EntityCacheTagsTestBase::verifyRenderCache in core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php
Verify that a given render cache entry exists, with the correct cache tags.
FileFieldTestBase::assertFileEntryNotExists in core/modules/file/src/Tests/FileFieldTestBase.php
Asserts that a file does not exist in the database.

... See full list

File

core/modules/simpletest/src/TestBase.php, line 512

Class

TestBase
Base class for Drupal tests.

Namespace

Drupal\simpletest

Code

protected function assertFalse($value, $message = '', $group = 'Other') {
  return $this
    ->assert(!$value, $message ? $message : new FormattableMarkup('Value @value is FALSE.', [
    '@value' => var_export($value, TRUE),
  ]), $group);
}