public function ControllerResolverTest::testGetControllerOnObjectWithoutInvokeMethod in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/Controller/ControllerResolverTest.php \Symfony\Component\HttpKernel\Tests\Controller\ControllerResolverTest::testGetControllerOnObjectWithoutInvokeMethod()
@expectedException \InvalidArgumentException
File
- vendor/
symfony/ http-kernel/ Tests/ Controller/ ControllerResolverTest.php, line 93
Class
Namespace
Symfony\Component\HttpKernel\Tests\ControllerCode
public function testGetControllerOnObjectWithoutInvokeMethod() {
$resolver = $this
->createControllerResolver();
$request = Request::create('/');
$request->attributes
->set('_controller', new \stdClass());
$resolver
->getController($request);
}