protected function DrupalWebTestCase::assertNoTitle in SimpleTest 7.2
Same name and namespace in other branches
- 6.2 drupal_web_test_case.php \DrupalWebTestCase::assertNoTitle()
- 7 drupal_web_test_case.php \DrupalWebTestCase::assertNoTitle()
Pass if the page title is not the given string.
Parameters
$title: The string the title should not be.
$message: Message to display.
$group: The group this message belongs to.
Return value
TRUE on pass, FALSE on fail.
1 call to DrupalWebTestCase::assertNoTitle()
- SimpleTestFunctionalTest::testInternalBrowser in ./
simpletest.test - Test the internal browsers functionality.
File
- ./
drupal_web_test_case.php, line 2969 - Provides DrupalTestCase, DrupalUnitTestCase, and DrupalWebTestCase classes.
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function assertNoTitle($title, $message = '', $group = 'Other') {
$actual = (string) current($this
->xpath('//title'));
if (!$message) {
$message = t('Page title @actual is not equal to @unexpected.', array(
'@actual' => var_export($actual, TRUE),
'@unexpected' => var_export($title, TRUE),
));
}
return $this
->assertNotEqual($actual, $title, $message, $group);
}