}
@Test
/*Just checks if ranges overlap*/
public void testStatsArithmetic(){
SlabStats test = cache.requestStats;
for(int i = 0; i < test.NUMDIVISIONS; i++){
assertTrue("Upper for index " + i + " is " + test.getUpperBound(i) +
" lower " + test.getLowerBound(i + 1),
test.getUpperBound(i) <= test.getLowerBound(i + 1));
}
}