Refactor TmfTrace and dependencies - minor changes
[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
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
6c13869b 14package org.eclipse.linuxtools.tmf.core.tests.trace;
d18dd09b
ASL
15
16import junit.framework.Test;
17import junit.framework.TestSuite;
18
4918b8f2 19import org.eclipse.linuxtools.internal.tmf.core.TmfCorePlugin;
e1ab8984 20
7e6347b0
FC
21/**
22 * <b><u>AllTests</u></b>
23 * <p>
24 */
3b38ea61 25@SuppressWarnings("nls")
d18dd09b
ASL
26public class AllTests {
27
28 public static Test suite() {
e1ab8984 29 TestSuite suite = new TestSuite("Test suite for " + TmfCorePlugin.PLUGIN_ID + ".trace"); //$NON-NLS-1$);
d18dd09b 30 //$JUnit-BEGIN$
ff4ed569 31 suite.addTestSuite(TmfLocationTest.class);
7e6347b0 32 suite.addTestSuite(TmfContextTest.class);
ff4ed569 33 suite.addTestSuite(TmfCheckpointTest.class);
13cb5f43 34 suite.addTestSuite(TmfCheckpointIndexTest.class);
cb866e08 35 suite.addTestSuite(TmfTraceTest.class);
d18dd09b
ASL
36 //$JUnit-END$
37 return suite;
38 }
39
e31e01e8 40}
This page took 0.043948 seconds and 5 git commands to generate.