- Created a JUnit test class to test the serialization. Should be useful for later tests.
18 lines
318 B
Java
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;
|
|
}
|
|
|
|
}
|