1 backdrop_web_test_case.php protected BackdropWebTestCase::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

core/modules/simpletest/backdrop_web_test_case.php, line 3194

Class

BackdropWebTestCase
Test case for typical Backdrop tests.

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);
}