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