Package org.gitective.core.filter.commit

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


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

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.