/**
  * Test __call exceptions
  *
  * @expectedException \BadMethodCallException
  * @return void
  */
 public function testMagicCallExceptionOnUnknownMethod()
 {
     $request = new Request();
     $request->IamABanana();
 }