Fix another pile of Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / uml2sd / AllTests.java
1 package org.eclipse.linuxtools.tmf.core.tests.uml2sd;
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 * Implement me. Please.
12 * <p>
13 */
14 @SuppressWarnings({ "nls" })
15 public class AllTests {
16
17 /**
18 * @return the test suite
19 */
20 public static Test suite() {
21 TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".uml2sd"); //$NON-NLS-1$);
22 //$JUnit-BEGIN$
23 suite.addTestSuite(TmfSyncSequenceDiagramEventTest.class);
24 suite.addTestSuite(TmfAsyncSequenceDiagramEventTest.class);
25 //$JUnit-END$
26 return suite;
27 }
28
29 }
This page took 0.031177 seconds and 5 git commands to generate.