001    package ps2.test;
002    
003    import org.junit.runner.RunWith;
004    import org.junit.runners.Suite;
005    import org.junit.runners.Suite.SuiteClasses;
006    
007    
008    /**
009     * ImplementationTest is a simple test suite to test the
010     * implementation of each problem set.  You do not need to modify this
011     * file for problem set 2.
012     **/
013    @RunWith(Suite.class)
014    @SuiteClasses({})
015    public final class ImplementationTests {
016        //this class is a placeholder for the suite, so it has no members.
017    }