예제 #1
0
 public function testGetPort()
 {
     $sPort = 8080;
     $aUrlComponents = array('scheme' => 'http', 'host' => 'localhost:' . $sPort, 'user' => '', 'pass' => '', 'path' => '', 'query' => array(), 'fragment' => '');
     $sUrl = UrlParserA_underTest::makeUrl($aUrlComponents);
     $oUrl = new UrlParserA_underTest($sUrl);
     $this->assertEquals($sPort, $oUrl->getPort());
 }