PhlyTest\Http\UriTest::testConstructorRaisesExceptionForSeriouslyMalformedURI PHP Method

testConstructorRaisesExceptionForSeriouslyMalformedURI() public method

    public function testConstructorRaisesExceptionForSeriouslyMalformedURI()
    {
        $this->setExpectedException('InvalidArgumentException');
        new Uri('http:///www.php-fig.org/');
    }
UriTest