Merge entries with same TID in Control Flow view
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / event / TestAll.java
CommitLineData
866e5b51
FC
1package org.eclipse.linuxtools.ctf.core.tests.event;
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)
4c9d2941 16@Suite.SuiteClasses({ CTFEventFieldTest.class, CTFCallsiteTest.class })
866e5b51
FC
17public class TestAll {
18
19 /**
20 * Launch the test.
4c9d2941 21 *
866e5b51
FC
22 * @param args
23 * the command line arguments
24 */
ce2388e0 25 public static void main(final String[] args) {
866e5b51
FC
26 JUnitCore.runClasses(new Class[] { TestAll.class });
27 }
28}
This page took 0.029115 seconds and 5 git commands to generate.