Neos\Flow\Tests\Unit\Property\TypeConverter\UriTypeConverterTest::typeConverterReturnsErrorOnMalformedUri PHP Method

typeConverterReturnsErrorOnMalformedUri() public method

    public function typeConverterReturnsErrorOnMalformedUri()
    {
        $actual = $this->typeConverter->convertFrom('http:////localhost', Http\Uri::class);
        $this->assertInstanceOf(FlowError\Error::class, $actual);
    }