001 package hw3.test; 002 003 import org.junit.runner.RunWith; 004 import org.junit.runners.Suite; 005 import org.junit.runners.Suite.SuiteClasses; 006 007 /** 008 * SpecificationTests is a simple TestSuite that includes and runs all the tests 009 * in {@link RatNumTest}, {@link RatPolyTest}, and {@link RatPolyStackTest}. 010 */ 011 012 @RunWith(Suite.class) 013 @SuiteClasses({ RatNumTest.class, 014 RatTermTest.class, 015 RatPolyTest.class, 016 RatPolyStackTest.class }) 017 public final class SpecificationTests { 018 // This class is a placeholder for the suite, so it has no members. 019 // The @SuiteClasses annotation lists the elements of the suite. 020 }