public void shouldBuildAnnotation() {
// given
OWLAnnotation expected = df.getOWLAnnotation(ap, lit);
BuilderAnnotation builder = new BuilderAnnotation(expected, df);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test