}
@Test
public void isCapableOfDealingWithEmptyParameterForInternalWrapperValue() throws OgnlException {
when(converters.to(Integer.class)).thenReturn(new IntegerConverter());
Ognl.setValue("cat.firstLeg.id", context, house, "");
assertThat(house.cat.firstLeg.id, is(equalTo(null)));
}