source: trunk/quest-ui-core-test/src/de/ugoe/cs/quest/jfc/data/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: 601 bytes
Line 
1package de.ugoe.cs.quest.jfc.data;
2
3import org.junit.runner.JUnitCore;
4import org.junit.runner.RunWith;
5import org.junit.runners.Suite;
6
7import de.ugoe.cs.quest.jfc.data.TestAll;
8
9/**
10 * The class <code>TestAll</code> builds a suite that can be used to run all
11 * of the tests within its package as well as within any subpackages of its
12 * package.
13 *
14 * @author Steffen Herbold
15 */
16@RunWith(Suite.class)
17@Suite.SuiteClasses({
18        JFCEventTest.class
19})
20public class TestAll {
21
22        public static void main(String[] args) {
23                JUnitCore.runClasses(new Class[] { TestAll.class });
24        }
25}
Note: See TracBrowser for help on using the repository browser.