/**
  * @test
  */
 public function outputReplacesArgumentsInGivenString()
 {
     $this->mockConsoleOutput->expects($this->once())->method('output')->with('%2$s %1$s', array('text', 'some'));
     $this->commandController->_call('output', '%2$s %1$s', array('text', 'some'));
 }