/**
  * @expectedException \Silex\Exception\ControllerFrozenException
  */
 public function testBindOnFrozenControllerShouldThrowException()
 {
     $controller = new Controller(new Route('/foo'));
     $controller->bind('foo');
     $controller->freeze();
     $controller->bind('bar');
 }