public function DynamicRouterTest::testRouteDebugMessage in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony-cmf/routing/Tests/Routing/DynamicRouterTest.php \Symfony\Cmf\Component\Routing\Tests\Routing\DynamicRouterTest::testRouteDebugMessage()
File
- vendor/
symfony-cmf/ routing/ Tests/ Routing/ DynamicRouterTest.php, line 267
Class
Namespace
Symfony\Cmf\Component\Routing\Tests\RoutingCode
public function testRouteDebugMessage() {
$this->generator
->expects($this
->once())
->method('getRouteDebugMessage')
->with($this
->equalTo('test'), $this
->equalTo(array()))
->will($this
->returnValue('debug message'));
$this
->assertEquals('debug message', $this->router
->getRouteDebugMessage('test'));
}