protected void testGetSetURIProperty() throws Exception
{
String setName = setMethod(property);
String getName = getMethod(property);
URIType tt = metadata.getTypeMapping().createURI(null, schema.getPrefix(), property, (String) value);
Method setMethod = schemaClass.getMethod(setName, URIType.class);
Method getMethod = schemaClass.getMethod(getName);
setMethod.invoke(schema, tt);
String found = ((TextType) getMethod.invoke(schema)).getStringValue();