os.write(string.getBytes());
}
// Finish the process
outputCommand.close();
Result result = outputCommand.result();
// The exit status of the process is 127
assertEquals(0, result.exit);
// The error output is captured
assertEquals("", result.stdErr);