@Test
public void testBeanWithIncorrectSetter()
{
try
{
BeanWithIncorrectSetter bean = new BeanWithIncorrectSetter();
BindAnnotationReader bindablesReader = new BindAnnotationReader();
bindablesReader.readBindables(bean);
Assert.fail("Should have caught ApplicationConfigurationException");
}
catch (ApplicationConfigurationException e)