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