Package org.gitective.core.filter.commit

Examples of org.gitective.core.filter.commit.BugFilter.clone()


  public void cloneBugFilter() throws Exception {
    add("file.txt", "content", "fixes NPE\nBug: abcd");

    CommitCountFilter count = new CommitCountFilter();
    BugFilter filter = new BugFilter();
    RevFilter clone = filter.clone();
    assertNotNull(clone);
    assertNotSame(filter, clone);
    new CommitFinder(testRepo).setFilter(
        new AndCommitFilter(filter, clone, count)).find();
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.