protected function TestBase::fail in SimpleTest 8.3
Fire an assertion that is always negative.
Parameters
$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
FALSE.
11 calls to TestBase::fail()
- KernelTestBase::installEntitySchema in src/
KernelTestBase.php - Installs the storage schema for a specific entity type.
- KernelTestBase::setUp in src/
KernelTestBase.php - Performs setup tasks before each individual test method is run.
- KernelTestBaseTest::testInstallConfig in src/
Tests/ KernelTestBaseTest.php - Tests expected behavior of installConfig().
- KernelTestBaseTest::testInstallSchema in src/
Tests/ KernelTestBaseTest.php - Tests expected behavior of installSchema().
- MissingCheckedRequirementsTest::testCheckRequirements in src/
Tests/ MissingCheckedRequirementsTest.php - Ensures test will not run when requirements are missing.
File
- src/
TestBase.php, line 814
Class
- TestBase
- Base class for Drupal tests.
Namespace
Drupal\simpletestCode
protected function fail($message = NULL, $group = 'Other') {
return $this
->assert(FALSE, $message, $group);
}