Example #1
0
 /**
  * @covers OAuth\Common\Http\Uri\Uri::__construct
  * @covers OAuth\Common\Http\Uri\Uri::parseUri
  * @covers OAuth\Common\Http\Uri\Uri::getPath
  */
 public function testGetPath()
 {
     $uri = new Uri('http://example.com/foo');
     $this->assertSame('/foo', $uri->getPath());
 }