@Test
public void shouldBuildObjectIntersectionOf() {
// given
OWLObjectIntersectionOf expected = df
.getOWLObjectIntersectionOf(classes);
BuilderObjectIntersectionOf builder = new BuilderObjectIntersectionOf(
expected, df);
// when
OWLObject built = builder.buildObject();
// then
assertEquals(expected, built);
}