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

outputReplacesArgumentsInGivenString() public method

    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']);
    }