diff --git a/PlotSquared/src/main/java/PlotTesting/Test1.java b/PlotSquared/src/main/java/PlotTesting/Test1.java index baa462f0e..282b45641 100644 --- a/PlotSquared/src/main/java/PlotTesting/Test1.java +++ b/PlotSquared/src/main/java/PlotTesting/Test1.java @@ -5,6 +5,11 @@ import org.junit.Test; import com.intellectualcrafters.plot.PlotHelper; import com.intellectualcrafters.plot.PlotMain; +import com.intellectualcrafters.plot.PlotManager; +import com.intellectualcrafters.plot.PlotWorld; +import com.intellectualcrafters.plot.SchematicHandler; +import com.intellectualcrafters.plot.generator.DefaultPlotManager; +import com.intellectualcrafters.plot.generator.DefaultPlotWorld; public class Test1 { @@ -14,4 +19,33 @@ public class Test1 { public void testSquare() { Assert.assertEquals(PlotHelper.square(5), 25); } + + @Test + public void testPlots() { + Assert.assertNotNull(PlotMain.getAllPlotsRaw()); + } + + @Test + public void testAddPlotWorld() { + boolean passed = false; + try { + PlotWorld plotworld = new DefaultPlotWorld("poop"); + PlotManager manager = new DefaultPlotManager(); + PlotMain.addPlotWorld("poop", plotworld, manager); + passed = PlotMain.getPlotManager("poop")!=null && PlotMain.getWorldSettings("poop")!=null; + } + catch (Throwable e) { + + } + finally { + Assert.assertTrue(passed); + } + } + + @Test + public void testCanSetFast() { + Assert.assertTrue(PlotHelper.canSetFast); + } + + }