Package mmrnmhrm.core.engine_client

Examples of mmrnmhrm.core.engine_client.SearchAndAddCompilersTask.searchPathsString()


  }
 
  protected void testWithPathVar(String pathsString) {
    SearchAndAddCompilersTask compilerSearchTask = new SearchAndAddCompilersTask(
      new NullProgressMonitor());
    compilerSearchTask.searchPathsString(pathsString, "_dummy_");
   
    List<InterpreterStandin> foundInstalls = compilerSearchTask.getFoundInstalls();
    assertTrue(foundInstalls.size() == 2);
    assertEquals(foundInstalls.get(0).getInstallLocation().getPath(),
      epath(MULTIPLE_IN_ONE_PATH).append("gdc"));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.