Package org.gitective.core.stat

Examples of org.gitective.core.stat.FileHistogramFilter.reset()


    FileHistogramFilter filter = new FileHistogramFilter();
    FileHistogram histogram = filter.getHistogram();
    assertNotNull(histogram);
    new CommitFinder(testRepo).setFilter(filter).find();
    assertSame(histogram, filter.getHistogram());
    filter.reset();
    assertNotNull(filter.getHistogram());
    assertNotSame(histogram, filter.getHistogram());
  }

  /**
 
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.