checkConfigFileName("com/ideo/jso/junit/minimize/jso1.xml", 1, properties);
Map groups = AbstractConfigurationLoader.getInstance().getUpdatedGroups();
Group group = (Group) groups.get("group3m");
// test if file is correctly merged
checkMergedJSFiles(group, "group3_minimized.txt", "ISO-8859-1");
// 2nd call without reseting group last load time should return empty file.
checkMergedJSFilesAreEmpty(group, "ISO-8859-1");
// 3rd call after reseting group last load time should return merged file.
group.setLastLoadTime(0);
checkMergedJSFiles(group, "group3_minimized.txt", "ISO-8859-1");
group = (Group) groups.get("group4m");
// test if file is correctly merged
checkMergedJSFiles(group, "group4_minimized.txt", "ISO-8859-1");
// 2nd call without reseting group last load time should return empty file.
checkMergedJSFilesAreEmpty(group, "ISO-8859-1");
// 3rd call after reseting group last load time should return merged file.
group.setLastLoadTime(0);
checkMergedJSFiles(group, "group4_minimized.txt", "ISO-8859-1");
}