2018-02-17 22:04:06 +01:00
|
|
|
import net.knarcraft.serverlauncher.profile.Profile;
|
|
|
|
import net.knarcraft.serverlauncher.server.ServerType;
|
2018-09-30 17:06:57 +02:00
|
|
|
import org.junit.jupiter.api.Test;
|
2018-02-17 22:04:06 +01:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|