Example #1
0
	protected function setUp() {
		parent::setUp();
		$this->viewHelper = $this->getAccessibleMock(\TYPO3\CMS\Fluid\ViewHelpers\Form\TextareaViewHelper::class, array('setErrorClassAttribute', 'registerFieldNameForFormTokenGeneration'));
		$this->arguments['name'] = '';
		$this->injectDependenciesIntoViewHelper($this->viewHelper);
		$this->viewHelper->initializeArguments();
	}
 /**
  *
  * Initializes the view helper arguments.
  * @return void
  *
  */
 public function initializeArguments()
 {
     parent::initializeArguments();
     $this->registerArgument('configuration', 'string', 'Path to TS configuration', FALSE, 'plugin.tx_typo3forum.settings.textParsing.editorPanel');
 }