2010-01-22 Francois Chouinard <fchouinard@gmail.com>
[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 //$JUnit-END$
15 return suite;
16 }
17
18 }
This page took 0.033223 seconds and 6 git commands to generate.