private boolean saveKeys;
@Parameters
public static Collection<Object[]> configs() {
return Arrays.asList(new Object[][] { { new BinarySearchStrategy(), true },
{ new InterpolationSearchStrategy(), true }, { new BinarySearchStrategy(), false },
{ new InterpolationSearchStrategy(), false } });
}