コード例 #1
0
ファイル: URLTest.class.php プロジェクト: Cloudrexx/cloudrexx
 public function testSuggestions()
 {
     $url = new Url('http://example.com/Test');
     $this->assertEquals('Test', $url->getSuggestedTargetPath());
     $this->assertEquals('', $url->getSuggestedParams());
     $url = new Url('http://example.com/Test?foo=bar');
     $this->assertEquals('Test', $url->getSuggestedTargetPath());
     $this->assertEquals('?foo=bar', $url->getSuggestedParams());
 }