use of com.builtbroken.mc.testing.junit.world.FakeWorld in project Engine by VoltzEngine-Project.
the class AbstractTileTest method testSendDescpacket.
@Test
public void testSendDescpacket() {
FakeWorld world = FakeWorld.newWorld("TestSendDescpacket");
world.setBlock(0, 0, 0, block);
Tile tile = ((Tile) world.getTileEntity(0, 0, 0));
if (tile.getDescPacket() != null) {
// tile.sendDescPacket();
}
}
use of com.builtbroken.mc.testing.junit.world.FakeWorld in project Engine by VoltzEngine-Project.
the class AbstractTileTest method testGetStrongestIndirectpower.
@Test
public void testGetStrongestIndirectpower() {
FakeWorld world = FakeWorld.newWorld("TestGetStrongestIndirectpower");
world.setBlock(0, 0, 0, block);
((Tile) world.getTileEntity(0, 0, 0)).getStrongestIndirectPower();
}
use of com.builtbroken.mc.testing.junit.world.FakeWorld in project Engine by VoltzEngine-Project.
the class AbstractTileTest method testGetColorMultiplier.
@Test
public void testGetColorMultiplier() {
FakeWorld world = FakeWorld.newWorld("TestGetColorMultiplier");
world.setBlock(0, 0, 0, block);
Tile tile = ((Tile) world.getTileEntity(0, 0, 0));
tile.getColorMultiplier();
}
use of com.builtbroken.mc.testing.junit.world.FakeWorld in project Engine by VoltzEngine-Project.
the class AbstractTileTest method testGetSpecialRenderer.
@Test
public void testGetSpecialRenderer() {
FakeWorld world = FakeWorld.newWorld("TestGetSpecialRenderer");
world.setBlock(0, 0, 0, block);
Tile tile = ((Tile) world.getTileEntity(0, 0, 0));
tile.getSpecialRenderer();
}
use of com.builtbroken.mc.testing.junit.world.FakeWorld in project Engine by VoltzEngine-Project.
the class AbstractTileTest method testNewTile.
@Test
public void testNewTile() {
FakeWorld world = FakeWorld.newWorld("TestNewTile");
world.setBlock(0, 0, 0, block);
Tile tile = ((Tile) world.getTileEntity(0, 0, 0));
tile.newTile();
}
Aggregations