| 7 drupal_web_test_case.php | protected DrupalWebTestCase::assertUrl($path, array $options = array(), $message = '', $group = 'Other') |
Pass if the internal browser's URL matches the given path.
Parameters
$path: The expected system path.
$options: (optional) Any additional options to pass for $path to url().
$message: Message to display.
$group: The group this message belongs to, defaults to 'Other'.
Return value
TRUE on pass, FALSE on fail.
File
- modules/
simpletest/ drupal_web_test_case.php, line 2742
Code
protected function assertUrl($path, array $options = array(), $message = '', $group = 'Other') {
if (!$message) {
$message = t('Current URL is @url.', array(
'@url' => var_export(url($path, $options), TRUE),
));
}
$options['absolute'] = TRUE;
return $this->assertEqual($this->getUrl(), url($path, $options), $message, $group);
}
Login or register to post comments