1a3d40e54175a60602c388a398f7c8d1b804743e
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / event / TestAll.java
1 package org.eclipse.linuxtools.ctf.core.tests.event;
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 of
9 * the tests within its package as well as within any subpackages of its
10 * package.
11 *
12 * @author ematkho
13 * @version $Revision: 1.0 $
14 */
15 @RunWith(Suite.class)
16 @Suite.SuiteClasses({
17 org.eclipse.linuxtools.ctf.core.tests.event.CTFEventFieldTest.class,
18 })
19 public class TestAll {
20
21 /**
22 * Launch the test.
23 *
24 * @param args
25 * the command line arguments
26 */
27 public static void main(final String[] args) {
28 JUnitCore.runClasses(new Class[] { TestAll.class });
29 }
30 }
This page took 0.030547 seconds and 4 git commands to generate.