コード例 #1
0
ファイル: UriTest.php プロジェクト: dotronglong/titan-http
 public function testBaseUrlAndPath()
 {
     $uri = new Uri();
     $uri->setBaseUrl('/folder/');
     $uri->setPath('/folder/my-path');
     $this->assertEquals('/my-path', $uri->getPath());
     $this->assertEquals('/folder', $uri->getBaseUrl());
 }