BuilderReflexiveObjectProperty builder = new BuilderReflexiveObjectProperty(
df).withProperty(op).withAnnotations(annotations);
OWLObject expected = df.getOWLReflexiveObjectPropertyAxiom(op,
annotations);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test