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
CommitLineData
7e6347b0
FC
1/*******************************************************************************
2 * Copyright (c) 2009, 2012 Ericsson
54a7a54c 3 *
7e6347b0
FC
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
54a7a54c 8 *
7e6347b0
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Adjusted for new Trace Model
12 *******************************************************************************/
13
6c13869b 14package org.eclipse.linuxtools.tmf.core.tests.trace;
d18dd09b
ASL
15
16import junit.framework.Test;
17import junit.framework.TestSuite;
18
8fd82db5 19import org.eclipse.linuxtools.internal.tmf.core.Activator;
e1ab8984 20
7e6347b0 21/**
0316808c 22 * Test suite for org.eclipse.linuxtools.tmf.core.trace
7e6347b0 23 */
2d223a34 24@SuppressWarnings({ "nls" })
d18dd09b
ASL
25public class AllTests {
26
54a7a54c
FC
27 /**
28 * @return the test suite
29 */
d18dd09b 30 public static Test suite() {
8fd82db5 31 TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".trace"); //$NON-NLS-1$);
d18dd09b 32 //$JUnit-BEGIN$
ff4ed569 33 suite.addTestSuite(TmfLocationTest.class);
7e6347b0 34 suite.addTestSuite(TmfContextTest.class);
ff4ed569 35 suite.addTestSuite(TmfCheckpointTest.class);
13cb5f43 36 suite.addTestSuite(TmfCheckpointIndexTest.class);
cb866e08 37 suite.addTestSuite(TmfTraceTest.class);
9e0640dc
FC
38
39 suite.addTestSuite(TmfExperimentCheckpointIndexTest.class);
40 suite.addTestSuite(TmfExperimentTest.class);
41 suite.addTestSuite(TmfMultiTraceExperimentTest.class);
d18dd09b
ASL
42 //$JUnit-END$
43 return suite;
44 }
45
e31e01e8 46}
This page took 0.042185 seconds and 5 git commands to generate.