1 18 package org.apache.activemq.management; 19 20 import org.apache.activemq.management.BoundedRangeStatisticImpl; 21 22 23 26 public class BoundedRangeStatisticTest extends RangeStatisticTest { 27 28 32 public void testStatistic() throws Exception { 33 BoundedRangeStatisticImpl stat = new BoundedRangeStatisticImpl("myRange", "millis", "myDescription", 10, 3000); 34 assertStatistic(stat, "myRange", "millis", "myDescription"); 35 assertEquals(10, stat.getLowerBound()); 36 assertEquals(3000, stat.getUpperBound()); 37 38 assertRangeStatistic(stat); 39 } 40 } 41 | Popular Tags |