- Implemented saving and loading of a player model. High scores are now persistent, though only for one user.

- Created a JUnit test class to test the serialization. Should be useful for later tests.
This commit is contained in:
Marshall
2012-04-28 23:01:36 -04:00
parent a6af6df132
commit dc11e2c48b
8 changed files with 180 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
package puzzleTests;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite(
"Tests for edu.gatech.cc.arktos.testcases");
// $JUnit-BEGIN$
suite.addTestSuite(Tests.class);
// $JUnit-END$
return suite;
}
}