protected function DrupalWebTestCase::assertTitle in SimpleTest 7
Same name and namespace in other branches
- 6.2 drupal_web_test_case.php \DrupalWebTestCase::assertTitle()
- 7.2 drupal_web_test_case.php \DrupalWebTestCase::assertTitle()
Pass if the page title is the given string.
Parameters
$title: The string the title should be.
$message: Message to display.
$group: The group this message belongs to.
Return value
TRUE on pass, FALSE on fail.
2 calls to DrupalWebTestCase::assertTitle()
- DrupalHTTPRequestTestCase::testDrupalHTTPRequest in tests/
common.test - SimpleTestFunctionalTest::testInternalBrowser in ./
simpletest.test - Test the internal browsers functionality.
File
- ./
drupal_web_test_case.php, line 2192
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function assertTitle($title, $message, $group = 'Other') {
return $this
->assertEqual(current($this
->xpath('//title')), $title, $message, $group);
}