001    package ps6.test;
002    
003    import junit.framework.*;
004    
005    public class ImplementationTests
006        extends TestSuite
007    {
008        public ImplementationTests(){
009            this("Problem Set 6 Implementation Tests");
010        }
011    
012        public static Test suite(){
013            return new ImplementationTests();
014        }
015      
016        public ImplementationTests(String s){
017            super(s);
018        }
019    }