for(Map<String, Object> insertValue : values) {
om.insert(objectType, insertValue);
}
VisitorFactoryTester visitorFactory = new VisitorFactoryTester();
TableScanner scanner = new TableScanner(om, objectType, numPartitions, visitorFactory, savepointDirectoryName);
List<Map.Entry<Long, Long>> ranges = scanner.makeRanges();
scanner.scan();
Long totalCount = 0L;
for(VisitorTester visitor : visitorFactory.getInstances()) {
totalCount += visitor.getObjectCount();
}