Example #1
0
 public function testSettersViaConstruct()
 {
     $route = new Route(array('service' => 'app.test'));
     $this->assertSame('', $route->getPath());
     $this->assertSame('app.test', $route->getService());
     $route = new Route(array('service' => 'app.test', 'path' => '/test/'));
     $this->assertSame('/test/', $route->getPath());
     $this->assertSame('app.test', $route->getService());
 }