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
CommitLineData
6c13869b 1package org.eclipse.linuxtools.tmf.core.tests.uml2sd;
73005152
BH
2
3import junit.framework.Test;
4import junit.framework.TestSuite;
5
8fd82db5 6import org.eclipse.linuxtools.internal.tmf.core.Activator;
73005152 7
54a7a54c
FC
8/**
9 * <b><u>AllTests</u></b>
10 * <p>
11 * Implement me. Please.
12 * <p>
13 */
2d223a34 14@SuppressWarnings({ "nls" })
73005152
BH
15public class AllTests {
16
54a7a54c
FC
17 /**
18 * @return the test suite
19 */
73005152 20 public static Test suite() {
8fd82db5 21 TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".uml2sd"); //$NON-NLS-1$);
73005152
BH
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.03491 seconds and 5 git commands to generate.