{
@Test
public void testSanity() throws Exception
{
int[] vals = {1, 2, 4, 291, 27412, 49120, 212312, 2412101};
ConciseSet mutableSet = new ConciseSet();
for (int val : vals) {
mutableSet.add(val);
}
ImmutableConciseSet set = ImmutableConciseSet.newImmutableFromMutable(mutableSet);
BitmapOffset offset = new BitmapOffset(new ConciseBitmapFactory(), new WrappedImmutableConciseBitmap(set));