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

Last change on this file since 341 was 341, checked in by sherbold, 12 years ago
  • Property svn:mime-type set to text/plain
File size: 812 bytes
Line 
1package de.ugoe.cs.eventbench;
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 12/15/11 3:35 PM
13 * @author Steffen Herbold
14 * @version 1.0
15 */
16@RunWith(Suite.class)
17@Suite.SuiteClasses({
18        SequenceInstanceOfTest.class,
19        de.ugoe.cs.eventbench.assertions.TestAll.class,
20        de.ugoe.cs.eventbench.coverage.TestAll.class,
21        de.ugoe.cs.eventbench.data.TestAll.class,
22        de.ugoe.cs.eventbench.models.TestAll.class
23})
24public class TestAll {
25
26        public static void main(String[] args) {
27                JUnitCore.runClasses(new Class[] { TestAll.class });
28        }
29}
Note: See TracBrowser for help on using the repository browser.