001package hw4.test;
002
003import org.junit.runner.RunWith;
004import org.junit.runners.Suite;
005import 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 4.
010 */
011
012@RunWith(Suite.class)
013@SuiteClasses({})
014public 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}