BuilderFunctionalDataProperty builder = new BuilderFunctionalDataProperty(
df).withProperty(dp).withAnnotations(annotations);
OWLObject expected = df.getOWLFunctionalDataPropertyAxiom(dp,
annotations);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test