public void shouldBuildNegativeObjectPropertyAssertion() {
// given
OWLNegativeObjectPropertyAssertionAxiom expected = df
.getOWLNegativeObjectPropertyAssertionAxiom(op, i, i,
annotations);
BuilderNegativeObjectPropertyAssertion builder = new BuilderNegativeObjectPropertyAssertion(
expected, df);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}