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