package de.ugoe.cs.quest; 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 12/15/11 3:35 PM * @author Steffen Herbold * @version 1.0 */ @RunWith(Suite.class) @Suite.SuiteClasses({ SequenceInstanceOfTest.class, de.ugoe.cs.quest.assertions.TestAll.class, de.ugoe.cs.quest.coverage.TestAll.class, de.ugoe.cs.quest.eventcore.TestAll.class, de.ugoe.cs.quest.usageprofiles.TestAll.class }) public class TestAll { public static void main(String[] args) { JUnitCore.runClasses(new Class[] { TestAll.class }); } }