Neos\Flow\Tests\Unit\Http\UriTest::stringRepresentationIsCorrect PHP Method

stringRepresentationIsCorrect() public method

Checks if a complete URI with all parts is transformed into an object correctly.
    public function stringRepresentationIsCorrect()
    {
        $uriString = 'http://username:[email protected]:1234/pathx1/pathx2/index.php?argument1=value1&argument2=value2&argument3[subargument1]=subvalue1#anchorman';
        $uri = new Uri($uriString);
        $this->assertEquals($uriString, (string) $uri, 'The string representation of the URI is not equal to the original URI string.');
    }