protected function TestBase::assertTrue in SimpleTest 8.3
Check to see if a value is not 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.
26 calls to TestBase::assertTrue()
- BrowserTest::testCookieDoesNotBleed in src/
Tests/ BrowserTest.php - Tests that the cookies from a previous test do not bleed into a new test.
- BrowserTest::testCookies in src/
Tests/ BrowserTest.php - Tests that cookies set during a request are available for testing.
- KernelTestBaseTest::run in src/
Tests/ KernelTestBaseTest.php - Run all tests in this class.
- KernelTestBaseTest::testEnableModulesFixedList in src/
Tests/ KernelTestBaseTest.php - Tests that the module list is retained after enabling/installing/disabling.
- KernelTestBaseTest::testEnableModulesInstall in src/
Tests/ KernelTestBaseTest.php - Tests expected installation behavior of enableModules().
File
- src/
TestBase.php, line 487
Class
- TestBase
- Base class for Drupal tests.
Namespace
Drupal\simpletestCode
protected function assertTrue($value, $message = '', $group = 'Other') {
return $this
->assert((bool) $value, $message ? $message : new FormattableMarkup('Value @value is TRUE.', [
'@value' => var_export($value, TRUE),
]), $group);
}