コード例 #1
0
ファイル: URITest.php プロジェクト: titounnes/CodeIgniter4
 public function testSetHostSetsValue()
 {
     $url = 'http://example.com/path';
     $uri = new URI($url);
     $expected = 'http://another.com/path';
     $uri->setHost('another.com');
     $this->assertEquals('another.com', $uri->getHost());
     $this->assertEquals($expected, (string) $uri);
 }