1 backdrop_web_test_case.php | protected BackdropWebTestCase::assertNoLink($label, $message = '', $group = 'Other') |
Pass if a link with the specified label is not found.
Parameters
$label: Text between the anchor tags.
$index: Link position counting from zero.
$message: Message to display.
$group: The group this message belongs to, defaults to 'Other'.
Return value
TRUE if the assertion succeeded, FALSE otherwise.:
File
- core/
modules/ simpletest/ backdrop_web_test_case.php, line 2928
Class
- BackdropWebTestCase
- Test case for typical Backdrop tests.
Code
protected function assertNoLink($label, $message = '', $group = 'Other') {
$links = $this->xpath('//a[normalize-space(text())=:label]', array(':label' => $label));
$message = ($message ? $message : t('Link with label %label not found.', array('%label' => $label)));
return $this->assert(empty($links), $message, $group);
}