Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / src / org / eclipse / linuxtools / tmf / tests / component / AllTests.java
1 package org.eclipse.linuxtools.tmf.tests.component;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 public class AllTests {
7
8 public static Test suite() {
9 TestSuite suite = new TestSuite(AllTests.class.getName());
10 //$JUnit-BEGIN$
11 suite.addTestSuite(TmfProviderManagerTest.class);
12 suite.addTestSuite(TmfEventProviderTest.class);
13 //$JUnit-END$
14 return suite;
15 }
16
17 }
This page took 0.032827 seconds and 5 git commands to generate.