[Bug292967] Second part of request coalescing + unit tests + minor fixes.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / src / org / eclipse / linuxtools / tmf / tests / request / AllTests.java
1 package org.eclipse.linuxtools.tmf.tests.request;
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 + ".request"); //$NON-NLS-1$);
12 //$JUnit-BEGIN$
13 suite.addTestSuite(TmfDataRequestTest.class);
14 suite.addTestSuite(TmfEventRequestTest.class);
15 suite.addTestSuite(TmfCoalescedDataRequestTest.class);
16 //$JUnit-END$
17 return suite;
18 }
19
20 }
This page took 0.031148 seconds and 6 git commands to generate.