コード例 #1
0
ファイル: URITest.php プロジェクト: titounnes/CodeIgniter4
 public function testSetPortZero()
 {
     $url = 'http://example.com/path';
     $uri = new URI($url);
     $this->setExpectedException('InvalidArgumentException', 'Invalid port given.');
     $uri->setPort(0);
 }