diff --git a/build.gradle b/build.gradle index 65e738b..7ee9cf8 100644 --- a/build.gradle +++ b/build.gradle @@ -66,6 +66,13 @@ project(":core") { api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" api "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion" api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" + + testCompile "junit:junit:4.12" + testCompile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion" + testCompile "com.badlogicgames.gdx:gdx:$gdxVersion" + testCompile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" + testCompile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion" + testCompile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop" } } diff --git a/core/src/test/java/MapTest.java b/core/src/test/java/MapTest.java new file mode 100644 index 0000000..8dec85d --- /dev/null +++ b/core/src/test/java/MapTest.java @@ -0,0 +1,4 @@ +package PACKAGE_NAME; + +public class MapTest { +}