tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core.tests / src / org / eclipse / tracecompass / tmf / core / tests / trace / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2015 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 Trace Model
12 * Alexandre Montplaisir - Port to JUnit4
13 *******************************************************************************/
14
15 package org.eclipse.tracecompass.tmf.core.tests.trace;
16
17 import org.junit.runner.RunWith;
18 import org.junit.runners.Suite;
19
20 /**
21 * Test suite for org.eclipse.tracecompass.tmf.core.trace
22 */
23 @RunWith(Suite.class)
24 @Suite.SuiteClasses({
25 TmfContextTest.class,
26 TmfExperimentTest.class,
27 TmfExperimentUtilsTest.class,
28 TmfMultiTraceExperimentTest.class,
29 TmfTraceTest.class,
30 TmfTraceUtilsTest.class
31 })
32 public class AllTests {}
This page took 0.032004 seconds and 5 git commands to generate.