Internalize some TMF APIs
[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
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() {
9ee9135e 29 TestSuite suite = new TestSuite("Test suite for " + TmfCorePlugin.PLUGIN_ID + ".event"); //$NON-NLS-1$;
d18dd09b 30 //$JUnit-BEGIN$
d18dd09b 31 suite.addTestSuite(TmfTimestampTest.class);
7656d70a 32 suite.addTestSuite(TmfSimpleTimestampTest.class);
d18dd09b 33 suite.addTestSuite(TmfTimeRangeTest.class);
7656d70a
FC
34 suite.addTestSuite(TmfEventFieldTest.class);
35 suite.addTestSuite(TmfEventTypeTest.class);
d18dd09b 36 suite.addTestSuite(TmfEventTest.class);
39f9eadb 37 suite.addTestSuite(TmfEventTypeManagerTest.class);
d18dd09b
ASL
38 //$JUnit-END$
39 return suite;
40 }
41
42}
This page took 0.03826 seconds and 5 git commands to generate.