~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.tmf.core.tests/src/org/eclipse/linuxtools/tmf/core/tests/component/AllTests.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.eclipse.linuxtools.tmf.core.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
}