}
@Test
public void shouldBuildDataIntersectionOf() {
// given
BuilderDataIntersectionOf builder = new BuilderDataIntersectionOf(df)
.withItem(d).withItem(df.getFloatOWLDatatype());
OWLObject expected = df.getOWLDataIntersectionOf(d,
df.getFloatOWLDatatype());
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}