assertInstanceOf(Smarty::class, $view); } /** * Test the create() function with a X-Forwarded-Proto header. * * @return void * @throws SmartyException */ public function testCreateWithXForwardedProto() { $container = new Container(); $container['locale'] = LocaleManager::getInstance(); $request = Request::createFromEnvironment(Environment::mock()); $view = ViewFactory::create($container, $request->withHeader('X-Forwarded-Proto', 'https')); $this->assertInstanceOf(Smarty::class, $view); } }