@Test
public void testNegativeHashcodeBucketSizeBigger() throws Exception {
StandardEvaluationContext context = new StandardEvaluationContext();
HashMethodExecutor executor = new HashMethodExecutor();
TypedValue value = executor.execute(context, new Object(), -9, 12);
assertThat((String) value.getValue(), is("9_hash"));
value = executor.execute(context, new Object(), -9, 24);
assertThat((String) value.getValue(), is("9_hash"));
value = executor.execute(context, new Object(), -9, 27);
assertThat((String) value.getValue(), is("9_hash"));
}