protected function DrupalWebTestCase::assertLink

Pass if a link with the specified label is found, and optional with the specified index.

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.

25 calls to DrupalWebTestCase::assertLink()
BlogTestCase::verifyBlogLinks in drupal/modules/blog/blog.test
Verify the blog links are displayed to the logged in user.
CommentAnonymous::testAnonymous in drupal/modules/comment/comment.test
Test anonymous comment functionality.
CommentInterfaceTest::assertCommentLinks in drupal/modules/comment/comment.test
Asserts that comment links appear according to the passed environment setup.
CommentInterfaceTest::testCommentNewCommentsIndicator in drupal/modules/comment/comment.test
Tests new comment marker.
CommentPreviewTest::testCommentPreview in drupal/modules/comment/comment.test
Test comment preview.

... See full list

File

drupal/modules/simpletest/drupal_web_test_case.php, line 2690

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertLink($label, $index = 0, $message = '', $group = 'Other') {
  $links = $this
    ->xpath('//a[normalize-space(text())=:label]', array(
    ':label' => $label,
  ));
  $message = $message ? $message : t('Link with label %label found.', array(
    '%label' => $label,
  ));
  return $this
    ->assert(isset($links[$index]), $message, $group);
}