source: trunk/EventBenchCoreTest/src/de/ugoe/cs/eventbench/models/TestAll.java @ 274

Last change on this file since 274 was 274, checked in by sherbold, 12 years ago
  • removed invalid "," from TestAll? test scripts
  • Property svn:mime-type set to text/plain
File size: 845 bytes
Line 
1package de.ugoe.cs.eventbench.models;
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 * @generatedBy CodePro at 10/14/11 11:01 AM
13 * @author sherbold
14 * @version $Revision: 1.0 $
15 */
16@RunWith(Suite.class)
17@Suite.SuiteClasses({
18        ModelFlattenerTest.class,
19        TrieBasedModelTest.class,
20        IncompleteMemoryTest.class,
21        TrieTest.class
22})
23public class TestAll {
24
25        /**
26         * Launch the test.
27         *
28         * @param args the command line arguments
29         *
30         * @generatedBy CodePro at 10/14/11 11:01 AM
31         */
32        public static void main(String[] args) {
33                JUnitCore.runClasses(new Class[] { TestAll.class });
34        }
35}
Note: See TracBrowser for help on using the repository browser.