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