PhlyTest\Http\UriTest::testStringRepresentationOfAbsoluteUriWithNoPathSetsAnEmptyPath PHP Method

testStringRepresentationOfAbsoluteUriWithNoPathSetsAnEmptyPath() public method

    public function testStringRepresentationOfAbsoluteUriWithNoPathSetsAnEmptyPath()
    {
        $uri = new Uri('http://example.com');
        $this->assertEquals('http://example.com', (string) $uri);
    }
UriTest