Package org.eclipse.jgit.treewalk

Examples of org.eclipse.jgit.treewalk.AbstractTreeIterator.back()


    assertEquals("a/b", sti.getEntryPathString());
    sti.next(1);
    assertEquals("a/c", sti.getEntryPathString());
    sti.next(1);
    assertEquals("a/d", sti.getEntryPathString());
    sti.back(2);
    assertEquals("a/b", sti.getEntryPathString());

  }

  @Test
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.