ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / event / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2013 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 * Alexandre Montplaisir - Port to JUnit4
13 * Patrick Tasse - Added TmfNanoTimestampTest
14 *******************************************************************************/
15
16 package org.eclipse.linuxtools.tmf.core.tests.event;
17
18 import org.junit.runner.RunWith;
19 import org.junit.runners.Suite;
20
21 /**
22 * Test suite for org.eclipse.linuxtools.tmf.core.event
23 */
24 @RunWith(Suite.class)
25 @Suite.SuiteClasses({
26 TmfEventFieldTest.class,
27 TmfEventTest.class,
28 TmfEventTypeManagerTest.class,
29 TmfEventTypeTest.class,
30 TmfNanoTimestampTest.class,
31 TmfSimpleTimestampTest.class,
32 TmfTimePreferencesTest.class,
33 TmfTimeRangeTest.class,
34 TmfTimestampDeltaTest.class,
35 TmfTimestampTest.class,
36 TmfTimestampFormatTest.class,
37 })
38 public class AllTests {
39
40 }
This page took 0.030592 seconds and 5 git commands to generate.