mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
more test cases
This commit is contained in:
parent
aaab7ee0c7
commit
687ad4cb9f
1 changed files with 34 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue