Enhanced test

This commit is contained in:
Butzlabben 2019-06-14 12:35:09 +02:00
parent e117fda5e8
commit 5411983f7d

View File

@ -3,7 +3,7 @@ package de.butzlabben.world.wrapper;
import org.bukkit.WorldCreator;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.junit.Assert.assertNotNull;
public class GeneratorSettingsTest {
@ -11,5 +11,6 @@ public class GeneratorSettingsTest {
public void asWorldCreator() {
GeneratorSettings settings = new GeneratorSettings();
WorldCreator creator = settings.asWorldCreator("test");
assertNotNull(creator);
}
}