Exemple #1
0
 /**
  * @test
  * @expectedException \Neat\Router\Exception\UnexpectedValueException
  */
 public function assemble_withEmptyParameter_throwsException()
 {
     $route = new Route('/date/:year/:month/:day(/:time+)');
     $route->assemble(['year' => 'year', 'month' => 'month']);
 }