@Test(expectedExceptions=ApplicationRuntimeException.class)
public void testOutwardDuffProperty()
{
handler.setBeanPropertyName("duffProperty");
BindableBean form = new BindableBean();
TargetBean targetBean = new TargetBean();
form.setTargetBean(targetBean);
targetBean.setIntegerProperty(4);
handler.bindOutwards(form, form);
}