001 package hw7.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 test suite used to encapsulate all
009 * tests specific to the specification of this homework.
010 *
011 * ScriptFileTests should be the only test class listed in
012 * SpecificationTests. If you are tempted to add other classes, recall that
013 * any tests you add to SpecificationTests must be valid tests for any other
014 * student's implementation for this assignment, even though other students
015 * will have designed a different public API.
016 *
017 **/
018 @RunWith(Suite.class)
019 @SuiteClasses({ ScriptFileTests.class})
020 public final class SpecificationTests
021 {
022 //this class is a placeholder for the suite, so it has no members.
023 }
024