diff --git a/.classpath b/.classpath index 97409f1..a3581e6 100644 --- a/.classpath +++ b/.classpath @@ -26,5 +26,6 @@ + diff --git a/src/utils/UnitTesting.java b/src/test/OsuPixelsTest.java similarity index 83% rename from src/utils/UnitTesting.java rename to src/test/OsuPixelsTest.java index 8befca7..a848a2c 100644 --- a/src/utils/UnitTesting.java +++ b/src/test/OsuPixelsTest.java @@ -1,16 +1,18 @@ -package utils; +package test; +import org.junit.Test; import org.newdawn.slick.GameContainer; import org.newdawn.slick.geom.Vector2f; import game.OsuPixels; -/** - * - * @author William Ball - * - */ -public class UnitTesting { +public class OsuPixelsTest { + + @Test + public void test() { + // TODO: Integrate + } + /** * Tests if OsuPixels returns the right vectors. *

@@ -35,4 +37,5 @@ public boolean testOsuPixels(GameContainer gc) { } return true; } + }