Ejemplo n.º 1
0
 public function testGetAndSetName()
 {
     $route = new Route('GET', '/test', ['as' => 'test']);
     $this->assertSame('test', $route->getName());
     $route->setName('foo');
     $this->assertSame('testfoo', $route->getName());
     $route = new Route('GET', '/test', null);
     $route->setName('test');
     $this->assertSame('test', $route->getName());
 }