$this->kernel->
boot();
$this->kernel->
preHandle($request);
$this->container =
$this->kernel->
getContainer();
// Manually configure the test mail collector implementation to prevent
// tests from sending out emails and collect them in state instead.
$this->container->
get('config.factory'
) ->
getEditable('system.mail'
) ->
set('interface.default', 'test_mail_collector'
) ->
save();
$this->
installDefaultThemeFromClassProperty($this->container
);
} } /**
* {@inheritdoc}
*/
protected function initFrontPage() { // We don't want to visit the front page with the installer when
// initializing Mink, so we do nothing here.
}