@Test
public void testSimpleBinding() throws Exception
{
NestedBindableBean nested = new NestedBindableBean();
BindableBean bindable = new BindableBean();
bindable.setNestedBindableBean(nested);
bindable.setIntegerValue("5");
BindAnnotationReader bindablesReader = new BindAnnotationReader();
BindConvertInfo bindConvertInfo = bindablesReader.readBindables(bindable);
Map<String, BindHandler> map = bindConvertInfo.getBindMap();