001 package ps4.test;
002
003 import junit.framework.*;
004
005 /**
006 * ImplementationTest is a test suite used to encapsulate all
007 * tests specific to your implementation of this problem set.
008 *
009 * For instance, unit tests for your individual methods would
010 * go here.
011 */
012 public final class ImplementationTests extends TestSuite
013 {
014 public static Test suite() { return new ImplementationTests(); }
015 public ImplementationTests() { this("Problem Set 4 ImplementationTests"); }
016 public ImplementationTests(String s)
017 {
018 super(s);
019
020 // add your JUnit tests here
021
022 // addTestSuite(???.class);
023
024 }
025 }