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