This converter simply creates a Neos\Flow\Http\Uri instance from the source string.
Inheritance: extends AbstractTypeConverter
 /**
  * @test
  */
 public function typeConverterReturnsErrorOnMalformedUri()
 {
     $actual = $this->typeConverter->convertFrom('http:////localhost', Http\Uri::class);
     $this->assertInstanceOf(FlowError\Error::class, $actual);
 }