[Bug309042] Improved code coverage, JUnit + minor bug fixes
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / src / org / eclipse / linuxtools / tmf / tests / trace / AllTests.java
1 package org.eclipse.linuxtools.tmf.tests.trace;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 import org.eclipse.linuxtools.tmf.TmfCorePlugin;
7
8 public class AllTests {
9
10 public static Test suite() {
11 TestSuite suite = new TestSuite("Test suite for " + TmfCorePlugin.PLUGIN_ID + ".trace"); //$NON-NLS-1$);
12 //$JUnit-BEGIN$
13 suite.addTestSuite(TmfLocationTest.class);
14 suite.addTestSuite(TmfCheckpointTest.class);
15 suite.addTestSuite(TmfContextTest.class);
16 suite.addTestSuite(TmfTraceTest.class);
17 //$JUnit-END$
18 return suite;
19 }
20
21 }
This page took 0.03743 seconds and 6 git commands to generate.