Commit | Line | Data |
---|---|---|
7e6347b0 | 1 | /******************************************************************************* |
2c7fb5af | 2 | * Copyright (c) 2009, 2015 Ericsson |
54a7a54c | 3 | * |
7e6347b0 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 | * |
7e6347b0 FC |
9 | * Contributors: |
10 | * Francois Chouinard - Initial API and implementation | |
11 | * Francois Chouinard - Adjusted for new Trace Model | |
6e1886bc | 12 | * Alexandre Montplaisir - Port to JUnit4 |
7e6347b0 FC |
13 | *******************************************************************************/ |
14 | ||
2bdf0193 | 15 | package org.eclipse.tracecompass.tmf.core.tests.trace; |
d18dd09b | 16 | |
6e1886bc AM |
17 | import org.junit.runner.RunWith; |
18 | import org.junit.runners.Suite; | |
e1ab8984 | 19 | |
7e6347b0 | 20 | /** |
2c7fb5af | 21 | * Test suite for org.eclipse.tracecompass.tmf.core.trace |
7e6347b0 | 22 | */ |
6e1886bc AM |
23 | @RunWith(Suite.class) |
24 | @Suite.SuiteClasses({ | |
6e1886bc | 25 | TmfContextTest.class, |
6e1886bc | 26 | TmfExperimentTest.class, |
9529060e | 27 | TmfExperimentUtilsTest.class, |
6e1886bc | 28 | TmfMultiTraceExperimentTest.class, |
b8585c7c AM |
29 | TmfTraceTest.class, |
30 | TmfTraceUtilsTest.class | |
6e1886bc | 31 | }) |
a3db8436 | 32 | public class AllTests {} |