Fix another pile of Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / trace / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Adjusted for new Trace Model
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.tmf.core.tests.trace;
15
16 import junit.framework.Test;
17 import junit.framework.TestSuite;
18
19 import org.eclipse.linuxtools.internal.tmf.core.Activator;
20
21 /**
22 * Test suite for org.eclipse.linuxtools.tmf.core.trace
23 */
24 @SuppressWarnings({ "nls" })
25 public class AllTests {
26
27 /**
28 * @return the test suite
29 */
30 public static Test suite() {
31 TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".trace"); //$NON-NLS-1$);
32 //$JUnit-BEGIN$
33 suite.addTestSuite(TmfLocationTest.class);
34 suite.addTestSuite(TmfContextTest.class);
35 suite.addTestSuite(TmfCheckpointTest.class);
36 suite.addTestSuite(TmfCheckpointIndexTest.class);
37 suite.addTestSuite(TmfTraceTest.class);
38
39 suite.addTestSuite(TmfExperimentCheckpointIndexTest.class);
40 suite.addTestSuite(TmfExperimentTest.class);
41 suite.addTestSuite(TmfMultiTraceExperimentTest.class);
42 //$JUnit-END$
43 return suite;
44 }
45
46 }
This page took 0.031118 seconds and 5 git commands to generate.