Package org.gitective.core.filter.commit

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


   * @throws Exception
   */
  @Test
  public void committerClone() throws Exception {
    CommitterDateFilter date = new CommitterDateFilter(2);
    RevFilter clone = date.clone();
    assertNotNull(clone);
    assertNotSame(date, clone);
    assertTrue(clone instanceof CommitterDateFilter);
  }

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.