File
- drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/Tests/Routing/DynamicRouterTest.php, line 120
Class
- DynamicRouterTest
Namespace
Symfony\Cmf\Component\Routing\Tests\Routing
Code
public function testMatchUrl() {
$routeDefaults = array(
'foo' => 'bar',
);
$this->matcher
->expects($this
->once())
->method('match')
->with($this->url)
->will($this
->returnValue($routeDefaults));
$expected = array(
'this' => 'that',
);
$this->enhancer
->expects($this
->once())
->method('enhance')
->with($this
->equalTo($routeDefaults), $this
->equalTo($this->request))
->will($this
->returnValue($expected));
$results = $this->router
->match($this->url);
$this
->assertEquals($expected, $results);
}