コード例 #1
0
 /**
  * Run the test by: - Adding values from iterator to map - Creating histogram over bucket sizes
  * per level - Printing histogram informations
  *
  * @param boundaries Expected results for each level
  */
 public void runTest(BucketBoundaries[] boundaries) {
   addValues();
   collectStatistics(rootMap, 0);
   if (LOG.isDebugEnabled() == true) {
     printStatistics();
   }
   checkBoundaries(boundaries);
 }