protected function DrupalWebTestCase::assertNoLinkByHref
7.x drupal_web_test_case.php | protected DrupalWebTestCase::assertNoLinkByHref($href, $message = '', $group = 'Other') |
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.
5 calls to DrupalWebTestCase::assertNoLinkByHref()
- NodeAdminTestCase::testContentAdminPages in drupal-7.x/
modules/ node/ node.test - Tests content overview with different user permissions.
- PathMonolingualTestCase::testPageLinks in drupal-7.x/
modules/ path/ path.test - Verifies that links do not have language prefixes in them.
- SearchExactTestCase::testExactQuery in drupal-7.x/
modules/ search/ search.test - Tests that the correct number of pager links are found for both keywords and phrases.
- SystemAdminTestCase::testAdminPages in drupal-7.x/
modules/ system/ system.test - Tests output on administrative listing pages.
- UserRoleAdminTestCase::testRoleAdministration in drupal-7.x/
modules/ user/ user.test - Test adding, renaming and deleting roles.
File
- drupal-7.x/
modules/ simpletest/ drupal_web_test_case.php, line 2661
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);
}