assertFalse(exceptionReports.getMonthStats().contains(new ExceptionReports.ReportItem(9, 7, 0, version)));// 0 <= MIN_COUNT
assertTrue(exceptionReports.getMonthStats().contains(new ExceptionReports.ReportItem(8, 7, 1, version)));
}
public void testReportItem() throws Exception{
Nbversion version = new Nbversion();
ExceptionReports.ReportItem item = new ExceptionReports.ReportItem(8, 7, 5, version);
assertEquals("Aug7", item.getKey());
item = new ExceptionReports.ReportItem(11, 4, 9, version);
assertEquals("Nov4", item.getKey());
item = new ExceptionReports.ReportItem(1, 2, 1, version);