Internalize some classes and fix a pile of warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / util / AllTests.java
CommitLineData
6c13869b 1package org.eclipse.linuxtools.tmf.core.tests.util;
79e08fd0
BH
2
3import junit.framework.Test;
4import junit.framework.TestSuite;
5
8fd82db5 6import org.eclipse.linuxtools.internal.tmf.core.Activator;
79e08fd0 7
8fd82db5 8@SuppressWarnings({ "nls", "restriction" })
79e08fd0
BH
9public class AllTests {
10
11 public static Test suite() {
8fd82db5 12 TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".util"); //$NON-NLS-1$);
79e08fd0
BH
13 //$JUnit-BEGIN$
14 suite.addTestSuite(TmfFixedArrayTest.class);
15 //$JUnit-END$
16 return suite;
17 }
18}
This page took 0.030995 seconds and 5 git commands to generate.