@Test
public void shouldBuildAsymmetricObjectProperty()
throws OWLOntologyCreationException {
// given
BuilderAsymmetricObjectProperty builder = new BuilderAsymmetricObjectProperty(
df).withProperty(op).withAnnotations(annotations);
OWLAxiom expected = df.getOWLAsymmetricObjectPropertyAxiom(op,
annotations);
OWLOntology o = m.createOntology();
// when
builder.applyChanges(o);
// then
assertTrue(o.containsAxiom(expected));
}