Refactor TmfExperiment
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / event / AllTests.java
CommitLineData
9ee9135e
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 Event Model
12 *******************************************************************************/
13
6c13869b 14package org.eclipse.linuxtools.tmf.core.tests.event;
d18dd09b
ASL
15
16import junit.framework.Test;
17import junit.framework.TestSuite;
18
4918b8f2 19import org.eclipse.linuxtools.internal.tmf.core.TmfCorePlugin;
e1ab8984 20
9ee9135e 21/**
0316808c 22 * Test suite for org.eclipse.linuxtools.tmf.core.event
9ee9135e 23 */
3b38ea61 24@SuppressWarnings("nls")
d18dd09b
ASL
25public class AllTests {
26
085d898f
FC
27 public static Test suite() {
28 final TestSuite suite = new TestSuite("Test suite for " + TmfCorePlugin.PLUGIN_ID + ".event"); //$NON-NLS-1$;
29 //$JUnit-BEGIN$
30 suite.addTestSuite(TmfTimestampTest.class);
7656d70a 31 suite.addTestSuite(TmfSimpleTimestampTest.class);
085d898f
FC
32 suite.addTestSuite(TmfTimeRangeTest.class);
33 suite.addTestSuite(TmfEventFieldTest.class);
7656d70a 34 suite.addTestSuite(TmfEventTypeTest.class);
085d898f 35 suite.addTestSuite(TmfEventTest.class);
39f9eadb 36 suite.addTestSuite(TmfEventTypeManagerTest.class);
085d898f
FC
37 //$JUnit-END$
38 return suite;
39 }
d18dd09b
ASL
40
41}
This page took 0.03988 seconds and 5 git commands to generate.