source: trunk/quest-ui-core-test/src/de/ugoe/cs/quest/TestAll.java @ 432

Last change on this file since 432 was 432, checked in by sherbold, 12 years ago
  • renamed packages to fir QUEST project structure
  • Property svn:mime-type set to text/plain
File size: 566 bytes
Line 
1package de.ugoe.cs.quest;
2
3import org.junit.runner.JUnitCore;
4import org.junit.runner.RunWith;
5import org.junit.runners.Suite;
6
7/**
8 * The class <code>TestAll</code> builds a suite that can be used to run all
9 * of the tests within its package as well as within any subpackages of its
10 * package.
11 *
12 * @author Steffen Herbold
13 */
14@RunWith(Suite.class)
15@Suite.SuiteClasses({
16        de.ugoe.cs.quest.jfc.data.TestAll.class
17})
18public class TestAll {
19        public static void main(String[] args) {
20                JUnitCore.runClasses(new Class[] { TestAll.class });
21        }
22}
Note: See TracBrowser for help on using the repository browser.