BuilderAsymmetricObjectProperty builder = new BuilderAsymmetricObjectProperty(
df).withProperty(op).withAnnotations(annotations);
OWLObject expected = df.getOWLAsymmetricObjectPropertyAxiom(op,
annotations);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test