function TestBase::assertNotNull
Check to see if a value is not NULL.
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.
1 call to TestBase::assertNotNull()
- SimpleTestInstallBatchTest::testLoadingEntitiesCreatedInBatch in core/
modules/ simpletest/ src/ Tests/ SimpleTestInstallBatchTest.php - Tests loading entities created in a batch in test_batch_test_install().
File
-
core/
modules/ simpletest/ src/ TestBase.php, line 558
Class
- TestBase
- Base class for Drupal tests.
Namespace
Drupal\simpletestCode
protected function assertNotNull($value, $message = '', $group = 'Other') {
return $this->assert(isset($value), $message ? $message : new FormattableMarkup('Value @value is not NULL.', [
'@value' => var_export($value, TRUE),
]), $group);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.