Neos\Flow\Tests\Unit\Mvc\Controller\CommandControllerTest::outputWritesGivenStringToTheConsoleOutput PHP Method

outputWritesGivenStringToTheConsoleOutput() public method

    public function outputWritesGivenStringToTheConsoleOutput()
    {
        $this->mockConsoleOutput->expects($this->once())->method('output')->with('some text');
        $this->commandController->_call('output', 'some text');
    }