GuzzleHttp\Tests\Psr7\UriNormalizerTest::getEquivalentTestCases PHP Метод

getEquivalentTestCases() публичный Метод

    public function getEquivalentTestCases()
    {
        return [['http://example.org', 'http://example.org', true], ['hTTp://eXaMpLe.org', 'http://example.org', true], ['http://example.org/path?#', 'http://example.org/path', true], ['http://example.org:80', 'http://example.org/', true], ['http://example.org/../a/.././p%61th?%7a=%5e', 'http://example.org/path?z=%5E', true], ['https://example.org/', 'http://example.org/', false], ['https://example.org/', '//example.org/', false], ['//example.org/', '//example.org/', true], ['file:/myfile', 'file:///myfile', true], ['file:///myfile', 'file://localhost/myfile', true]];
    }