use of org.simpleflatmapper.reflect.setter.NullSetter in project SimpleFlatMapper by arnaudroger.
the class ConstructorPropertyMetaTest method testSetterIsNullSetter.
@Test
public void testSetterIsNullSetter() throws Exception {
PropertyMeta<CObject, Object> property = classMeta.newPropertyFinder(isValidPropertyMeta).findProperty(new DefaultPropertyNameMatcher("p1", 0, false, false), new Object[0]);
assertTrue(property.getSetter() instanceof NullSetter);
}
Aggregations