tmf: Update tmf.core unit tests to JUnit4
[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, 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 *******************************************************************************/
14
15 package org.eclipse.linuxtools.tmf.core.tests.event;
16
17 import org.junit.runner.RunWith;
18 import org.junit.runners.Suite;
19
20 /**
21 * Test suite for org.eclipse.linuxtools.tmf.core.event
22 */
23 @RunWith(Suite.class)
24 @Suite.SuiteClasses({
25 TmfEventFieldTest.class,
26 TmfEventTest.class,
27 TmfEventTypeManagerTest.class,
28 TmfEventTypeTest.class,
29 TmfSimpleTimestampTest.class,
30 TmfTimeRangeTest.class,
31 TmfTimestampDeltaTest.class,
32 TmfTimestampTest.class
33 })
34 public class AllTests {
35
36 }
This page took 0.03173 seconds and 6 git commands to generate.