Neos\FluidAdaptor\Tests\Unit\ViewHelpers\Uri\ExternalViewHelperTest::renderAddsHttpPrefixIfSpecifiedUriDoesNotContainScheme PHP Method

renderAddsHttpPrefixIfSpecifiedUriDoesNotContainScheme() public method

    public function renderAddsHttpPrefixIfSpecifiedUriDoesNotContainScheme()
    {
        $this->viewHelper->initialize();
        $actualResult = $this->viewHelper->render('www.some-domain.tld');
        $this->assertEquals('http://www.some-domain.tld', $actualResult);
    }