Implement ItemFactory and ItemMeta values. Adds BUKKIT-15
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
package org.bukkit.craftbukkit.updater;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
import static org.hamcrest.Matchers.*;
|
||||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
@Ignore ("useful tests, but not necessary to run on each compile")
|
||||
public class BukkitDLUpdaterServiceTest {
|
||||
@Test(expected=IOException.class)
|
||||
public void testHostNotFound() throws IOException {
|
||||
@@ -28,6 +27,6 @@ public class BukkitDLUpdaterServiceTest {
|
||||
public void testArtifactExists() throws IOException {
|
||||
BukkitDLUpdaterService service = new BukkitDLUpdaterService("dl.bukkit.org");
|
||||
|
||||
assertNotNull(service.fetchArtifact("latest-dev"));
|
||||
assertThat(service.fetchArtifact("latest-dev"), is(not(nullValue())));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user