Essence\Utility\UrlTest::testResolveAll PHP Method

testResolveAll() public method

public testResolveAll ( )
    public function testResolveAll()
    {
        $urls = ['/home', '../home'];
        $expected = ['http://test.com/home'];
        $this->assertEquals($expected, Url::resolveAll($urls, 'http://test.com'));
    }