001 package ps0.test; 002 003 import junit.framework.*; 004 005 /** 006 * SpecificationTests is a simple test suite to test your problem set 007 * against the provided specifications. You do not need to modify this file for problem 008 * set 0. 009 */ 010 public final class SpecificationTests extends TestSuite 011 { 012 public static Test suite() { return new SpecificationTests(); } 013 public SpecificationTests() { this("Problem Set 0 SpecificationTests"); } 014 public SpecificationTests(String s) 015 { 016 super(s); 017 addTestSuite(FibonacciTest.class); 018 addTestSuite(HolaWorldTest.class); 019 addTestSuite(RandomHelloTest.class); 020 addTestSuite(BallTest.class); 021 addTestSuite(BoxTest.class); 022 addTestSuite(BallContainerTest.class); 023 024 } 025 }