Essence\Utility\UrlTest::testPath PHP 메소드

testPath() 공개 메소드

public testPath ( )
    public function testPath()
    {
        $parts = [Url::path => 'a', Url::query => 'b=c', Url::fragment => 'd'];
        $this->assertEquals('/a?b=c#d', Url::path($parts));
    }