use of jodd.bean.data.Woof in project jodd by oblac.
the class BeanUtilGenericsTest method testAllBeanSetters.
@Test
public void testAllBeanSetters() {
Woof woof = new Woof();
Class type = woof.getClass();
ClassDescriptor cd = ClassIntrospector.lookup(type);
PropertyDescriptor[] properties = cd.getAllPropertyDescriptors();
assertNotNull(properties);
assertEquals(7, properties.length);
}
Aggregations