// given
OWLAnnotationProperty expected = df.getOWLAnnotationProperty(iri);
BuilderAnnotationProperty builder = new BuilderAnnotationProperty(
expected, df);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test