Essence\Utility\UrlTest::testPath PHP Method

testPath() public method

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));
    }