Commit | Line | Data |
---|---|---|
6e1886bc | 1 | /******************************************************************************* |
2b5c3b7e | 2 | * Copyright (c) 2013, 2014 Ericsson |
6e1886bc AM |
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 | * Alexandre Montplaisir - Initial API and implementation | |
11 | *******************************************************************************/ | |
12 | ||
2bdf0193 | 13 | package org.eclipse.tracecompass.tmf.core.tests.component; |
d18dd09b | 14 | |
6e1886bc AM |
15 | import org.junit.runner.RunWith; |
16 | import org.junit.runners.Suite; | |
d18dd09b | 17 | |
54a7a54c | 18 | /** |
6e1886bc | 19 | * Unit tests for the component package. |
54a7a54c | 20 | */ |
6e1886bc AM |
21 | @RunWith(Suite.class) |
22 | @Suite.SuiteClasses({ | |
2b5c3b7e | 23 | TmfEventProviderCoalescingTest.class, |
6e1886bc AM |
24 | TmfEventProviderTest.class, |
25 | TmfProviderManagerTest.class | |
26 | }) | |
d18dd09b ASL |
27 | public class AllTests { |
28 | ||
d18dd09b | 29 | } |