Initial commit

This commit is contained in:
Ziver Koc 2019-12-31 16:50:44 +01:00
commit a3503e3e5c
73 changed files with 1348 additions and 0 deletions

View 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() {
}
}