BuilderEquivalentObjectProperties builder = new BuilderEquivalentObjectProperties(
df).withItems(ops).withAnnotations(annotations);
OWLObject expected = df.getOWLEquivalentObjectPropertiesAxiom(ops,
annotations);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test