コード例 #1
0
ファイル: CegmaV24Test.java プロジェクト: TGAC/TgacConanProcs
  @Test
  public void testCommand() {

    CegmaV24 process = createProcess();

    String command = process.getCommand();

    assertTrue(command.equals(correctCommand));
  }
コード例 #2
0
ファイル: CegmaV24Test.java プロジェクト: TGAC/TgacConanProcs
  @Test
  public void testFullCommand() throws IOException, ConanParameterException {

    CegmaV24 process = createProcess();

    process.initialise();

    String fullCommand = process.getFullCommand();

    assertTrue(fullCommand.equals(correctFullCommand));
  }