use of io.xol.chunkstories.api.content.mods.ModsManager in project chunkstories by Hugobros3.
the class ModsManagerTest method testModsManager.
@Test
public void testModsManager() {
String coreContentLocation = System.getProperty("coreContentLocation", "../chunkstories-core/build/distributions/core_content.zip");
try {
ModsManager modsManager = new ModsManagerImplementation(new File(coreContentLocation));
modsManager.loadEnabledMods();
} catch (NonExistentCoreContent e) {
e.printStackTrace();
fail();
} catch (NotAllModsLoadedException e) {
e.printStackTrace();
}
}
Aggregations