1 admin_bar.test | protected AdminBarWebTestCase::assertLinkTrailByTitle(array $trail) |
Asserts that links appear in the menu in a specified trail.
Parameters
array $trail: A list of menu link titles to assert in the menu.
File
- core/
modules/ admin_bar/ tests/ admin_bar.test, line 76 - Tests for the Administration bar module.
Class
- AdminBarWebTestCase
- Base class for all administration bar web test cases.
Code
protected function assertLinkTrailByTitle(array $trail) {
list($xpath, $args, $message) = $this->_getXpathLinkTrailByTitle($trail);
$this->assertElementByXPath($xpath, $args, $message . ' link found.');
}