Re-structure LTTng sub-project as per the Linux Tools guidelines
[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.tmf.core.TmfCorePlugin;
7
8 @SuppressWarnings("nls")
9 public class AllTests {
10
11 public static Test suite() {
12 TestSuite suite = new TestSuite("Test suite for " + TmfCorePlugin.PLUGIN_ID + ".util"); //$NON-NLS-1$);
13 //$JUnit-BEGIN$
14 suite.addTestSuite(TmfFixedArrayTest.class);
15 //$JUnit-END$
16 return suite;
17 }
18 }
This page took 0.033773 seconds and 5 git commands to generate.