Наследование: implements Neos\Flow\Mvc\Controller\ControllerInterface
 /**
  * @test
  */
 public function outputReplacesArgumentsInGivenString()
 {
     $this->mockConsoleOutput->expects($this->once())->method('output')->with('%2$s %1$s', ['text', 'some']);
     $this->commandController->_call('output', '%2$s %1$s', ['text', 'some']);
 }