@Test
public void testSumoImport() {
ModelManager model = ModelManager.getInstance();
model.clearModel();
model.notifyObservers(new ObserverNotification(NotificationType.startBatchProcess));
Sumo2ModelDOM s2m = new Sumo2ModelDOM("./resources/sumo_test/original/berlin_test.net.xml", model, false,
false, "");
s2m.run();
model.notifyObservers(new ObserverNotification(NotificationType.endBatchProcess, true, false));
Assert.assertEquals(1597, ModelManager.getInstance().getAllModelElements().size());
}