예제 #1
0
파일: UriTest.php 프로젝트: nikkialgar/grav
 public function testPort()
 {
     $this->uri->initializeWithURL('http://localhost/a-page')->init();
     $this->assertSame('80', $this->uri->port());
     $this->uri->initializeWithURL('http://localhost:8080/a-page')->init();
     $this->assertSame(8080, $this->uri->port());
     $this->uri->initializeWithURL('http://localhost:443/a-page')->init();
     $this->assertSame(443, $this->uri->port());
     $this->uri->initializeWithURL('https://localhost/a-page')->init();
     $this->assertSame('80', $this->uri->port());
 }