function DrupalWebTestCase::assertRaw
Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated.
Parameters
$raw: Raw (HTML) string to look for.
$message: Message to display.
$group: The group this message belongs to, defaults to 'Other'.
Return value
TRUE on pass, FALSE on fail.
248 calls to DrupalWebTestCase::assertRaw()
- ActionsConfigurationTestCase::testActionConfiguration in modules/
simpletest/ tests/ actions.test - Test the configuration of advanced actions through the administration interface.
- AdminMetaTagTestCase::testMetaTag in modules/
system/ system.test - Verify that the meta tag HTML is generated correctly.
- AggregatorTestCase::createFeed in modules/
aggregator/ aggregator.test - Creates an aggregator feed.
- AggregatorTestCase::deleteFeed in modules/
aggregator/ aggregator.test - Deletes an aggregator feed.
- AggregatorTestCase::removeFeedItems in modules/
aggregator/ aggregator.test - Confirms an item removal from a feed.
File
-
modules/
simpletest/ drupal_web_test_case.php, line 3298
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function assertRaw($raw, $message = '', $group = 'Other') {
if (!$message) {
$message = t('Raw "@raw" found', array(
'@raw' => $raw,
));
}
return $this->assert(strpos($this->drupalGetContent(), (string) $raw) !== FALSE, $message, $group);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.