Neos\Flow\Tests\Unit\Mvc\Controller\CommandControllerTest::outputWritesGivenStringToTheConsoleOutput PHP Метод

outputWritesGivenStringToTheConsoleOutput() публичный Метод

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