Example #1
0
 /**
  * Test Exception when matching an invalid log level.
  */
 public function testInvalidArgumentExceptionWhenGettingLogLevel()
 {
     $router = new Router();
     $this->setExpectedException('InvalidArgumentException', "Got a route that does not match any log level. Route received: __none.");
     $router->getLogLevelFromRoute('__none');
 }