package de.ugoe.cs.util; 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. * * @author Steffen Herbold * @version 1.0 */ @RunWith(Suite.class) @Suite.SuiteClasses({ StringToolsTest.class, FileToolsTest.class, ArrayToolsTest.class, de.ugoe.cs.util.console.TestAll.class }) public class TestAll { public static void main(String[] args) { JUnitCore.runClasses(new Class[] { TestAll.class }); } }