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