Package org.gitective.core.filter.commit

Examples of org.gitective.core.filter.commit.DiffLineCountFilter.reset()


    DiffLineCountFilter filter = new DiffLineCountFilter();
    new CommitFinder(testRepo).setFilter(filter).find();
    assertEquals(1, filter.getAdded());
    assertEquals(0, filter.getEdited());
    assertEquals(0, filter.getDeleted());
    filter.reset();
    assertEquals(0, filter.getAdded());
  }

  /**
   * Add multiple lines in different files
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.