/**
  * {@inheritdoc}
  *
  * @return \TYPO3\TypoScript\View\TypoScriptView
  */
 protected function buildView()
 {
     $view = parent::buildView();
     $view->setPackageKey('Neos.ImageProcessingTest');
     $view->setTypoScriptPathPattern(__DIR__ . '/Fixtures/TypoScript/');
     $view->assign('fixtureDirectory', __DIR__ . '/Fixtures/');
     $view->assign('image', $this->originalImage);
     return $view;
 }
 public function setUp()
 {
     parent::setUp();
     $this->contentCache = $this->objectManager->get('TYPO3\\TypoScript\\Core\\Cache\\ContentCache');
     $this->contentCache->flush();
 }
 public function setUp()
 {
     parent::setUp();
     $this->contentCache = $this->objectManager->get(ContentCache::class);
     $this->contentCache->flush();
 }