コード例 #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::hasExplicitPortSpecified
  */
 public function testHasExplicitPortSpecifiedFalse()
 {
     $uri = new Uri('http://example.com');
     $this->assertFalse($uri->hasExplicitPortSpecified());
 }