001    package ps1.test;
002    
003    import junit.framework.*;
004    
005    /**
006     * ImplementationTest is a simple test suite to test the implementation of each
007     * problem set. You do not need to modify this file for problem set 1.
008     */
009    public final class ImplementationTests extends TestSuite {
010        public static Test suite() {
011            return new ImplementationTests();
012        }
013    
014        public ImplementationTests() {
015            this("Problem Set 1 ImplementationTests");
016        }
017    
018        public ImplementationTests(String s) {
019            super(s);
020        }
021    }