// given
BuilderImportsDeclaration builder = new BuilderImportsDeclaration(df)
.withImportedOntology(iri);
OWLImportsDeclaration expected = df.getOWLImportsDeclaration(iri);
// when
OWLImportsDeclaration built = builder.buildObject();
// then
assertEquals(expected, built);
}
@Test