protected function TestBase::assertFalse in SimpleTest 8.3
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.
10 calls to TestBase::assertFalse()
- KernelTestBaseTest::testEnableModulesInstall in src/
Tests/ KernelTestBaseTest.php - Tests expected installation behavior of enableModules().
- KernelTestBaseTest::testEnableModulesLoad in src/
Tests/ KernelTestBaseTest.php - Tests expected load behavior of enableModules().
- KernelTestBaseTest::testInstallConfig in src/
Tests/ KernelTestBaseTest.php - Tests expected behavior of installConfig().
- KernelTestBaseTest::testInstallSchema in src/
Tests/ KernelTestBaseTest.php - Tests expected behavior of installSchema().
- KernelTestBaseTest::testSetUp in src/
Tests/ KernelTestBaseTest.php - Tests expected behavior of setUp().
File
- src/
TestBase.php, line 512
Class
- TestBase
- Base class for Drupal tests.
Namespace
Drupal\simpletestCode
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);
}