Merge branch 'master' into TmfTraceModel-new
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / event / AllTests.java
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
14 package org.eclipse.linuxtools.tmf.core.tests.event;
15
16 import junit.framework.Test;
17 import junit.framework.TestSuite;
18
19 import org.eclipse.linuxtools.internal.tmf.core.TmfCorePlugin;
20
21 /**
22 * <b><u>AllTests</u></b>
23 * <p>
24 */
25 @SuppressWarnings("nls")
26 public class AllTests {
27
28 public static Test suite() {
29 final TestSuite suite = new TestSuite("Test suite for " + TmfCorePlugin.PLUGIN_ID + ".event"); //$NON-NLS-1$;
30 //$JUnit-BEGIN$
31 suite.addTestSuite(TmfTimestampTest.class);
32 suite.addTestSuite(TmfSimpleTimestampTest.class);
33 suite.addTestSuite(TmfTimeRangeTest.class);
34 suite.addTestSuite(TmfEventFieldTest.class);
35 suite.addTestSuite(TmfEventTypeTest.class);
36 suite.addTestSuite(TmfEventTest.class);
37 suite.addTestSuite(TmfEventTypeManagerTest.class);
38 //$JUnit-END$
39 return suite;
40 }
41
42 }
This page took 0.033613 seconds and 6 git commands to generate.