@Test
public void shouldBuildDisjointDataProperties()
throws OWLOntologyCreationException {
// given
BuilderDisjointDataProperties builder = new BuilderDisjointDataProperties(
df).withItems(dps).withAnnotations(annotations);
OWLAxiom expected = df.getOWLDisjointDataPropertiesAxiom(dps,
annotations);
OWLOntology o = m.createOntology();
// when
builder.applyChanges(o);
// then
assertTrue(o.containsAxiom(expected));
}