analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / src / org / eclipse / tracecompass / tmf / core / tests / event / AllTests.java
CommitLineData
9ee9135e 1/*******************************************************************************
2c7fb5af 2 * Copyright (c) 2009, 2015 Ericsson
54a7a54c 3 *
9ee9135e
FC
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
54a7a54c 8 *
9ee9135e
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Adjusted for new Event Model
6e1886bc 12 * Alexandre Montplaisir - Port to JUnit4
16035098 13 * Patrick Tasse - Added TmfNanoTimestampTest
9ee9135e
FC
14 *******************************************************************************/
15
2bdf0193 16package org.eclipse.tracecompass.tmf.core.tests.event;
d18dd09b 17
6e1886bc
AM
18import org.junit.runner.RunWith;
19import org.junit.runners.Suite;
e1ab8984 20
9ee9135e 21/**
2c7fb5af 22 * Test suite for org.eclipse.tracecompass.tmf.core.event
9ee9135e 23 */
6e1886bc
AM
24@RunWith(Suite.class)
25@Suite.SuiteClasses({
26 TmfEventFieldTest.class,
27 TmfEventTest.class,
6e1886bc 28 TmfEventTypeTest.class,
16035098 29 TmfNanoTimestampTest.class,
6e1886bc 30 TmfSimpleTimestampTest.class,
c1cd9635 31 TmfTimePreferencesTest.class,
6e1886bc
AM
32 TmfTimeRangeTest.class,
33 TmfTimestampDeltaTest.class,
f47ed727 34 TmfTimestampTest.class,
c1cd9635 35 TmfTimestampFormatTest.class,
6e1886bc 36})
d18dd09b
ASL
37public class AllTests {
38
d18dd09b 39}
This page took 0.09713 seconds and 5 git commands to generate.