BuilderDisjointDataProperties builder = new BuilderDisjointDataProperties(
df).withItems(dps).withAnnotations(annotations);
OWLObject expected = df.getOWLDisjointDataPropertiesAxiom(dps,
annotations);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test