コード例 #1
0
ファイル: UriTest.php プロジェクト: Flesh192/magento
 /**
  * @covers OAuth\Common\Http\Uri\Uri::__construct
  * @covers OAuth\Common\Http\Uri\Uri::parseUri
  * @covers OAuth\Common\Http\Uri\Uri::getFragment
  */
 public function testGetFragmentNotExists()
 {
     $uri = new Uri('http://example.com');
     $this->assertSame('', $uri->getFragment());
 }