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