/**
  * Sets up this testcase
  */
 public function setUp()
 {
     $this->tsfeBackup = $GLOBALS['TSFE'];
     $this->mockContentObject = $this->getMock('tslib_cObj');
     $this->extConfBackup = $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['extbase'];
     $this->frontendConfigurationManager = $this->getAccessibleMock('Tx_Extbase_Configuration_FrontendConfigurationManager', array('dummy'));
     $this->frontendConfigurationManager->_set('contentObject', $this->mockContentObject);
 }