public class TestRDFAnnotationsHelper {
@Test
public void gettingURIExpressionValueAsSpecifiedValue() throws Exception {
Field field = Person.class.getDeclaredField("familyName");
Method getter = ReflectUtils.getGetterMethod(field);
RDFProperty rdfProperty = getter.getAnnotation(RDFProperty.class);
String uri = RdfAnnotationsHelper.getURI(field, rdfProperty);
assertEquals("family_name", uri);
}