| Line | |
|---|
| 1 | package de.ugoe.cs.eventbench.jfc.data;
|
|---|
| 2 |
|
|---|
| 3 | import org.junit.runner.JUnitCore;
|
|---|
| 4 | import org.junit.runner.RunWith;
|
|---|
| 5 | import 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 | JFCEventTest.class
|
|---|
| 17 | })
|
|---|
| 18 | public class TestAll {
|
|---|
| 19 |
|
|---|
| 20 | public static void main(String[] args) {
|
|---|
| 21 | JUnitCore.runClasses(new Class[] { TestAll.class });
|
|---|
| 22 | }
|
|---|
| 23 | }
|
|---|
Note: See
TracBrowser
for help on using the repository browser.