You are here

protected function DrupalWebTestCase::assertNoLinkByHref in SimpleTest 6.2

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

Pass if a link containing a given href (part) is not found.

Parameters

$href: The full or partial value of the 'href' attribute of the anchor tag.

$message: Message to display.

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

Return value

TRUE if the assertion succeeded, FALSE otherwise.

File

./drupal_web_test_case.php, line 2137

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function assertNoLinkByHref($href, $message = '', $group = 'Other') {
  $links = $this
    ->xpath('//a[contains(@href, :href)]', array(
    ':href' => $href,
  ));
  $message = $message ? $message : t('No link containing href %href found.', array(
    '%href' => $href,
  ));
  return $this
    ->assert(empty($links), $message, $group);
}