/**
  * @covers JsonCommandExecutor::executeCommand
  *
  * @expectedException \Xiag\JsonCommand\Exception\RuntimeException
  * @expectedExceptionCode 100
  */
 public function testExecuteCommandNonExecutable()
 {
     $commandExecutor = new RawCommandExecutor($this->execDir . '/nonexecutable');
     $commandExecutor->executeCommand();
 }