/**
* Use case for BoundaryStatisticImpl class.
* @throws Exception
*/
public void testStatistic() throws Exception {
BoundaryStatisticImpl stat = new BoundaryStatisticImpl("myBoundaryStat", "seconds", "myBoundaryStatDesc", 1000, 2000);
assertStatistic(stat, "myBoundaryStat", "seconds", "myBoundaryStatDesc");
assertEquals(1000, stat.getLowerBound());
assertEquals(2000, stat.getUpperBound());
log.info("Stat is: " + stat);
}