return asList(new BigDecimal("987654321987654311.09876006"), new BigDecimal("987654321987654221.09876035"));
}
@Override protected Map<Class<? extends Annotation>, Annotation> configurations() {
InRange range = mock(InRange.class);
when(range.min()).thenReturn((String) defaultValueOf(InRange.class, "min"));
when(range.max()).thenReturn(max.toString());
Precision precision = mock(Precision.class);
when(precision.scale()).thenReturn(8);
return ImmutableMap.<Class<? extends Annotation>, Annotation> builder()
.put(InRange.class, range)