@Test public void testCommand() { CegmaV24 process = createProcess(); String command = process.getCommand(); assertTrue(command.equals(correctCommand)); }
@Test public void testFullCommand() throws IOException, ConanParameterException { CegmaV24 process = createProcess(); process.initialise(); String fullCommand = process.getFullCommand(); assertTrue(fullCommand.equals(correctFullCommand)); }