Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / util / AllTests.java
1 package org.eclipse.linuxtools.tmf.core.tests.util;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 import org.eclipse.linuxtools.internal.tmf.core.Activator;
7
8 /**
9 * <b><u>AllTests</u></b>
10 * <p>
11 * <p>
12 */
13 @SuppressWarnings({ "nls" })
14 public class AllTests {
15
16 /**
17 * @return the test suite
18 */
19 public static Test suite() {
20 TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".util"); //$NON-NLS-1$);
21 //$JUnit-BEGIN$
22 suite.addTestSuite(PairTest.class);
23 suite.addTestSuite(TmfFixedArrayTest.class);
24 //$JUnit-END$
25 return suite;
26 }
27 }
This page took 0.034083 seconds and 6 git commands to generate.