/**
  * Sets up this test case.
  */
 protected function setUp()
 {
     parent::setUp();
     $this->typoScriptRepositoryProphecy = $this->prophesize(TypoScriptRepository::class);
     $this->subject = $this->getAccessibleMock(Configuration::class, array('__none'));
     $this->subject->_set('typoScriptRepository', $this->typoScriptRepositoryProphecy->reveal());
 }