protected void testGetSetDateProperty() throws Exception
{
String setName = setMethod(property);
String getName = getMethod(property);
DateType dt = new DateType(metadata, null, schema.getPrefix(), property, value);
Method setMethod = schemaClass.getMethod(setName, DateType.class);
Method getMethod = schemaClass.getMethod(getName);
setMethod.invoke(schema, dt);
Calendar found = ((DateType) getMethod.invoke(schema)).getValue();