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