Skip to content

Commit

Permalink
Refactored unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
chen-robert committed Apr 5, 2018
1 parent 14184d7 commit 64cd607
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@
<attribute name="javadoc_location" value="jar:platform:/resource/BEeT/lib/JLayer1.0.1/doc.zip!/doc"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="bin"/>
</classpath>
17 changes: 10 additions & 7 deletions src/utils/UnitTesting.java → src/test/OsuPixelsTest.java
Original file line number Diff line number Diff line change
@@ -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.
* <p>
Expand All @@ -35,4 +37,5 @@ public boolean testOsuPixels(GameContainer gc) {
}
return true;
}

}

0 comments on commit 64cd607

Please sign in to comment.