Gc\View\Helper\CdnBackendTest::testInvokeUnsecure PHP Method

testInvokeUnsecure() public method

Test
public testInvokeUnsecure ( ) : void
return void
    public function testInvokeUnsecure()
    {
        $coreConfig = Registry::get('Application')->getServiceManager()->get('CoreConfig');
        $basePath = $coreConfig->setValue('force_backend_ssl', 0);
        $basePath = $coreConfig->setValue('unsecure_cdn_base_path', 'http://got-cms.com');
        $this->assertEquals('http://got-cms.com/test', $this->object->__invoke('test'));
    }