public function testCallInvalidAction()
 {
     $provider = $this->getMockBuilder('Vardius\\Bundle\\CrudBundle\\Data\\DataProviderInterface')->getMock();
     $this->setExpectedException('Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException');
     $controller = new CrudController($provider);
     $controller->callAction(null, new Request());
 }