Package org.gitective.core.filter.commit

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


    CommitFinder service = new CommitFinder(testRepo);
    service.setFilter(filter);
    service.find();
    assertEquals(1, filter.getPersons().size());
    assertTrue(filter.getPersons().contains(author));
    filter.reset();
    assertTrue(filter.getPersons().isEmpty());
    assertFalse(filter.getPersons().contains(author));
  }
}
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.