assertTrue(IntrospectionSupport.hasProperties(param, ""));
assertTrue(IntrospectionSupport.hasProperties(param, "foo."));
}
public void testGetProperties() throws Exception {
ExampleBean bean = new ExampleBean();
bean.setName("Claus");
bean.setPrice(10.0);
Map<String, Object> map = new HashMap<String, Object>();
IntrospectionSupport.getProperties(bean, map, null);
assertEquals(3, map.size());