Exemplo n.º 1
0
 /** @covers Brickoo\Component\Http\Uri::getPath */
 public function testGetPath()
 {
     $path = "/some/path";
     $uri = new Uri("https", $this->getUriAuthorityStub(), $path, $this->getUriQueryStub(), "");
     $this->assertEquals($path, $uri->getPath());
 }