BuilderSubDataProperty builder = new BuilderSubDataProperty(df)
.withSub(dp).withSup(df.getOWLTopDataProperty());
OWLObject expected = df.getOWLSubDataPropertyOfAxiom(dp,
df.getOWLTopDataProperty());
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test