Update Grammar and Add support for callsites
[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 public class AllCtfCoreTests {
24
25 /**
26 * Launch the test.
27 *
28 * @param args
29 * the command line arguments
30 */
31 public static void main(final String[] args) {
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.034234 seconds and 5 git commands to generate.