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