Package org.tmatesoft.hg.core

Examples of org.tmatesoft.hg.core.HgRevertCommand.file()


  }
 
 
  private void testRevert() throws Exception {
    HgRevertCommand cmd = new HgRevertCommand(hgRepo);
    cmd.file(Path.create("a.txt")).execute();
  }
 
  private void testCheckout() throws Exception {
    HgCheckoutCommand coCmd = new HgCheckoutCommand(hgRepo);
    coCmd.changeset(17).execute();
View Full Code Here


    assertEquals("[sanity]", 1, statusParser.getModified().size());
    assertEquals("[sanity]", 2, statusParser.getClean().size());
    assertEquals("[sanity]", targetFile, statusParser.getModified().get(0));
   
    HgRevertCommand cmd = new HgRevertCommand(repo);
    cmd.file(targetFile).execute();
    statusParser.reset();
    eh.run("hg", "status", "-A");

    errorCollector.assertEquals(3, statusParser.getClean().size());
    errorCollector.assertTrue(statusParser.getClean().contains(targetFile));
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.