Files
cs8803p4/test/puzzleTests/AllTests.java
Marshall dc11e2c48b - 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.
2012-04-28 23:01:36 -04:00

18 lines
318 B
Java

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;
}
}