Minecraft-Server-Launcher/test/DownloadTests.java
Kristian Knarvik a3a8e4f377 Fixes downloading of jar files
Links to knarcraft.net updated.
Code for parsing the new minecraft vanilla json files added.
2018-09-30 17:06:57 +02:00

16 lines
481 B
Java

import net.knarcraft.serverlauncher.profile.Profile;
import net.knarcraft.serverlauncher.server.ServerType;
import org.junit.jupiter.api.Test;
import javax.naming.ConfigurationException;
import java.io.IOException;
public class DownloadTests {
@Test
public void downloadJarsTest() throws IOException, ConfigurationException {
// Will currently always fail since knarcraft.net is down.
ServerType.loadServerTypes();
Profile.downloadJars();
}
}