prepareDevToolTests();
I18nManager i18nMgr = I18nManager.getInstance();
String testSourceBundle = "org.olat.core.util.i18n.junittestdata.devtools.source";
String testTargetBundle = "org.olat.core.util.i18n.junittestdata.devtools.target";
TranslationDevManager tDMgr = TranslationDevManager.getInstance();
tDMgr.movePackageByMovingSingleKeysTask(testSourceBundle, testTargetBundle);
i18nMgr.clearCaches();
Properties sourceProp = i18nMgr.getPropertiesWithoutResolvingRecursively(null, testSourceBundle);
assertTrue(sourceProp.isEmpty());
Properties targetProp = i18nMgr.getPropertiesWithoutResolvingRecursively(null, testTargetBundle);
assertFalse(targetProp.isEmpty());