Kristian Knarvik
a3a8e4f377
Links to knarcraft.net updated. Code for parsing the new minecraft vanilla json files added.
16 lines
481 B
Java
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();
|
|
}
|
|
}
|