示例#1
0
 /**
  * @expectedException InvalidArgumentException
  * @expectedExceptionMessage Unknown HTTP method: XXX
  */
 public function testInvalidMethod()
 {
     $route = new Route();
     $route->method('XXX');
 }