You are here

protected function DrupalWebTestCase::assertNoLink in Drupal 7

Pass if a link with the specified label is not found.

Parameters

$label: Text between the anchor tags.

$message: Message to display.

$group: The group this message belongs to, defaults to 'Other'.

Return value

TRUE if the assertion succeeded, FALSE otherwise.

10 calls to DrupalWebTestCase::assertNoLink()
BookTestCase::testBookExport in modules/book/book.test
Tests book export ("printer-friendly version") functionality.
CommentAnonymous::testAnonymous in modules/comment/comment.test
Test anonymous comment functionality.
CommentInterfaceTest::assertCommentLinks in modules/comment/comment.test
Asserts that comment links appear according to the passed environment setup.
CommentInterfaceTest::testCommentNewCommentsIndicator in modules/comment/comment.test
Tests new comment marker.
MenuBreadcrumbTestCase::testBreadCrumbs in modules/simpletest/tests/menu.test
Tests breadcrumbs on node and administrative paths.

... See full list

File

modules/simpletest/drupal_web_test_case.php, line 2929

Class

DrupalWebTestCase
Test case for typical Drupal 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);
}