protected void testGetSetIntegerProperty() throws Exception
{
String setName = setMethod(property);
String getName = getMethod(property);
IntegerType it = new IntegerType(metadata, null, schema.getPrefix(), property, value);
Method setMethod = schemaClass.getMethod(setName, IntegerType.class);
Method getMethod = schemaClass.getMethod(getName);
setMethod.invoke(schema, it);
Integer found = ((IntegerType) getMethod.invoke(schema)).getValue();