@Test
public void testGunzip() {
File file = new File(testFile.getAbsolutePath()+".gz");
ConanProcess process = new LocalGunzipProcess();
Map<ConanParameter, String> processParams = new HashMap<ConanParameter, String>();
Map<String, String> inputParams = new HashMap<String, String>();
inputParams.put("file", file.getAbsolutePath());
ProcessUtils.extractConanParameters(processParams, inputParams, process);
try {
process.execute(processParams);
}
catch (ProcessExecutionException e) {
e.printStackTrace();
fail();
}