001 package ps3.test;
002
003 import org.junit.runner.*;
004 import org.junit.runners.*;
005 import org.junit.runners.Suite.*;
006
007 /**
008 * SpecificationTests is a test suite used to encapsulate all
009 * tests specific to the specification of this problem set.
010 */
011
012 @RunWith(Suite.class)
013 @SuiteClasses({ ScriptFileTests.class /* TODO: add other test classes here */})
014 public final class SpecificationTests
015 {
016 //this class is a placeholder for the suite, so it has no members.
017 }