{
final Model
m1 = model( "this hasMarker M1; _x owl:imports M2" ),
m2 = model( "this hasMarker M2" );
Model m = model( "x ja:reasoner y; _x owl:imports M1" );
FileManager fm = new FixedFileManager()
.add( "eh:/M1", m1 ).add( "eh:/M2", m2 );
Model result = new ImportManager().withImports( fm, m );
assertInstanceOf( MultiUnion.class, result.getGraph() );
assertIsoModels( m1.union(m2).union(m), result );
}