/**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage The GET request parameter "foo" does not exist.
  */
 public function testGetGetParameterWithInvalidName()
 {
     $this->request->getGetParameter('foo');
 }