package de.ugoe.cs.util.console; import org.junit.runner.JUnitCore; import org.junit.runner.RunWith; import org.junit.runners.Suite; /** * The class TestAll builds a suite that can be used to run all * of the tests within its package as well as within any subpackages of its * package. * * @generatedBy CodePro at 10/7/11 8:17 PM * @author sherbold * @version $Revision: 1.0 $ */ @RunWith(Suite.class) @Suite.SuiteClasses({ CommandParserTest.class, FileOutputListenerTest.class, TextConsoleTest.class, ConsoleTest.class }) public class TestAll { /** * Launch the test. * * @param args the command line arguments * * @generatedBy CodePro at 10/7/11 8:17 PM */ public static void main(String[] args) { JUnitCore.runClasses(new Class[] { TestAll.class }); } }