Initial commit
This commit is contained in:
commit
a3503e3e5c
73 changed files with 1348 additions and 0 deletions
18
core/test/se/cookery/world/WorldTest.java
Normal file
18
core/test/se/cookery/world/WorldTest.java
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
package se.cookery.world;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertNull;
|
||||
|
||||
public class WorldTest {
|
||||
|
||||
@Test
|
||||
public void blockExists() {
|
||||
World w = new World();
|
||||
assertNull(w.getBlock(0, 0));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getBlock() {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue