* Attention: Clear the {@link StatisticsDataManager} after testing
* to avoid side effects to other tests.
* @param inputFilename
*/
private void testParseFileInputStream(String inputFilename) {
SumoDump2Model converter = new SumoDump2Model();
StatisticsDataManager.getInstance().clear();
try {
converter.parseFile(new URL("file", null, inputFilename), false, false);
}
catch (Exception xcp) {
xcp.printStackTrace();
}
}