You are here

protected function DrupalWebTestCase::assertNoLink in SimpleTest 7

Same name and namespace in other branches
  1. 6.2 drupal_web_test_case.php \DrupalWebTestCase::assertNoLink()
  2. 7.2 drupal_web_test_case.php \DrupalWebTestCase::assertNoLink()

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.

1 call to DrupalWebTestCase::assertNoLink()
MenuIncTestCase::testMenuLinkMaintain in tests/menu.test
Tests for menu_link_maintain().

File

./drupal_web_test_case.php, line 1758

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertNoLink($label, $message = '', $group = 'Other') {
  $links = $this
    ->xpath('//a[text()="' . $label . '"]');
  $message = $message ? $message : t('Link with label %label not found.', array(
    '%label' => $label,
  ));
  return $this
    ->assert(empty($links), $message, $group);
}