/**  * InputSeparator test driver.  *  * @author Ben Woskow, Chetan Desai, David Janzen  * @version Lab 3  * @version CPE102-X (replace the X with your section number)  * @version Winter 2008  */ import org.junit.runner.RunWith; import org.junit.runners.Suite; import junit.framework.JUnit4TestAdapter; // This section declares all of the test classes in your program. @RunWith(Suite.class) @Suite.SuiteClasses({ DieTest.class // In future programs/labs you will add test classes here. }) public class AllTests { // Execution begins at main(). In this test class, we will execute // a text test runner that will tell you if any of your tests fail. public static void main (String[] args) { junit.textui.TestRunner.run (suite()); } // The suite() method is helpful when we are grading your program. // Be sure to always include it, but you will not need to change it. public static junit.framework.Test suite() { return new JUnit4TestAdapter(AllTests.class); } }