Refactor TmfExperiment
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / experiment / AllTests.java
CommitLineData
0316808c
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.experiment;
d18dd09b
ASL
15
16import junit.framework.Test;
17import junit.framework.TestSuite;
18
4918b8f2 19import org.eclipse.linuxtools.internal.tmf.core.TmfCorePlugin;
d18dd09b 20
0316808c
FC
21/**
22 * Test suite for org.eclipse.linuxtools.tmf.core.experiment
23 */
3b38ea61 24@SuppressWarnings("nls")
d18dd09b
ASL
25public class AllTests {
26
27 public static Test suite() {
28 TestSuite suite = new TestSuite("Test suite for " + TmfCorePlugin.PLUGIN_ID + ".experiment"); //$NON-NLS-1$);
29 //$JUnit-BEGIN$
30 suite.addTestSuite(TmfExperimentTest.class);
31 suite.addTestSuite(TmfMultiTraceExperimentTest.class);
32 //$JUnit-END$
33 return suite;
34 }
35
36}
This page took 0.033645 seconds and 5 git commands to generate.