001 package hw3.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 * homework. You are not required to modify this file for Homework 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 // The @SuiteClasses annotation lists the elements of the suite. 018 }