001    package ps3.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 3 ImplementationTests"); }
016        public ImplementationTests(String s)
017        {
018            super(s);
019    
020            // addTestSuite(MyGreatTests.class);
021        }
022    }