6f01e38fd3128a398259f7a52f436f434a272097
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / AllCtfCoreTests.java
1 package org.eclipse.linuxtools.ctf.core.tests;
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({ CtfCorePluginTest.class,
17 org.eclipse.linuxtools.ctf.core.tests.io.TestAll.class,
18 org.eclipse.linuxtools.ctf.core.tests.types.TestAll.class,
19 org.eclipse.linuxtools.ctf.core.tests.trace.TestAll.class,
20 org.eclipse.linuxtools.ctf.core.tests.trace.UtilsTest.class,
21 org.eclipse.linuxtools.ctf.core.tests.event.TestAll.class,
22
23 })
24 public class AllCtfCoreTests {
25
26 /**
27 * Launch the test.
28 *
29 * @param args
30 * the command line arguments
31 */
32 public static void main(String[] args) {
33 // try {
34 // ProfileMe.prof_s();
35 // } catch (Exception e) {
36 // // TODO Auto-generated catch block
37 // e.printStackTrace();
38 // }
39 JUnitCore.runClasses(new Class[] { AllCtfCoreTests.class });
40 }
41 }
This page took 0.065155 seconds and 5 git commands to generate.