Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / src / org / eclipse / linuxtools / tmf / tests / util / AllTests.java
CommitLineData
79e08fd0
BH
1package org.eclipse.linuxtools.tmf.tests.util;
2
3import junit.framework.Test;
4import junit.framework.TestSuite;
5
6import org.eclipse.linuxtools.tmf.TmfCorePlugin;
7
8@SuppressWarnings("nls")
9public 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.025559 seconds and 5 git commands to generate.