ctf: Fix API inconsistencies
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / AllCtfCoreTests.java
CommitLineData
866e5b51
FC
1package org.eclipse.linuxtools.ctf.core.tests;
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 of
9 * the tests within its package as well as within any subpackages of its
10 * package.
4c9d2941 11 *
866e5b51
FC
12 * @author ematkho
13 * @version $Revision: 1.0 $
14 */
15@RunWith(Suite.class)
16@Suite.SuiteClasses({ CtfCorePluginTest.class,
ce2388e0
FC
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,
4c9d2941 21 org.eclipse.linuxtools.ctf.core.tests.event.TestAll.class,
866e5b51
FC
22})
23public class AllCtfCoreTests {
24
25 /**
26 * Launch the test.
4c9d2941 27 *
866e5b51
FC
28 * @param args
29 * the command line arguments
30 */
ce2388e0 31 public static void main(final String[] args) {
866e5b51
FC
32 // try {
33 // ProfileMe.prof_s();
34 // } catch (Exception e) {
35 // // TODO Auto-generated catch block
36 // e.printStackTrace();
37 // }
38 JUnitCore.runClasses(new Class[] { AllCtfCoreTests.class });
39 }
40}
This page took 0.027434 seconds and 5 git commands to generate.