001package hw4.test; 002 003import org.junit.runner.RunWith; 004import org.junit.runners.Suite; 005import 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 }) 017public 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}