/**
  * @test
  */
 public function loadTypoScriptSetupReturnsSetupFromTSFE()
 {
     $GLOBALS['TSFE']->tmpl->setup = array('foo' => 'bar');
     $this->assertEquals(array('foo' => 'bar'), $this->frontendConfigurationManager->loadTypoScriptSetup());
 }