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

Last change on this file since 338 was 338, checked in by sherbold, 12 years ago
  • added JUnit test cases for de.ugoe.cs.eventbench.data.Event and ReplayableEvent?
  • Property svn:mime-type set to text/plain
File size: 600 bytes
Line 
1package de.ugoe.cs.eventbench.data;
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 * @version 1.0
14 */
15@RunWith(Suite.class)
16@Suite.SuiteClasses({
17        EventTest.class,
18        ReplayableEventTest.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.