@Test
public void shouldBuildDataProperty() {
// given
OWLDataProperty expected = df.getOWLDataProperty(iri);
BuilderDataProperty builder = new BuilderDataProperty(expected, df);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}