Package org.gitective.core.filter.commit

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


   */
  @Test
  public void cloneFilter() {
    CommitLimitFilter limit = new CommitLimitFilter(1);
    AndCommitFilter and = new AndCommitFilter(limit);
    RevFilter clone = and.clone();
    assertNotNull(clone);
    assertNotSame(and, clone);
    assertTrue(clone instanceof AndCommitFilter);
  }
}
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.