analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / src / org / eclipse / tracecompass / tmf / core / tests / AllTmfCoreTests.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2014 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 * Alexandre Montplaisir - Port to JUnit4, enable CTF and statistics tests
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.tmf.core.tests;
15
16 import org.eclipse.tracecompass.tmf.core.tests.shared.DebugSuite;
17 import org.junit.runner.RunWith;
18
19 /**
20 * Master test suite for TMF Core.
21 */
22 @RunWith(DebugSuite.class)
23 @DebugSuite.SuiteClasses({
24 TmfCorePluginTest.class,
25 org.eclipse.tracecompass.tmf.core.tests.analysis.AllTests.class,
26 org.eclipse.tracecompass.tmf.core.tests.callstack.AllTests.class,
27 org.eclipse.tracecompass.tmf.core.tests.component.AllTests.class,
28 org.eclipse.tracecompass.tmf.core.tests.event.AllTests.class,
29 org.eclipse.tracecompass.tmf.core.tests.event.lookup.AllTests.class,
30 org.eclipse.tracecompass.tmf.core.tests.filter.AllTests.class,
31 org.eclipse.tracecompass.tmf.core.tests.model.AllTests.class,
32 org.eclipse.tracecompass.tmf.core.tests.request.AllTests.class,
33 org.eclipse.tracecompass.tmf.core.tests.signal.AllTests.class,
34 org.eclipse.tracecompass.tmf.core.tests.statesystem.AllTests.class,
35 org.eclipse.tracecompass.tmf.core.tests.statesystem.mipmap.AllTests.class,
36 org.eclipse.tracecompass.tmf.core.tests.synchronization.AllTests.class,
37 org.eclipse.tracecompass.tmf.core.tests.trace.AllTests.class,
38 org.eclipse.tracecompass.tmf.core.tests.trace.indexer.AllTests.class,
39 org.eclipse.tracecompass.tmf.core.tests.trace.indexer.checkpoint.AllTests.class,
40 org.eclipse.tracecompass.tmf.core.tests.trace.location.AllTests.class,
41 org.eclipse.tracecompass.tmf.core.tests.trace.text.AllTests.class,
42 org.eclipse.tracecompass.tmf.core.tests.uml2sd.AllTests.class,
43 org.eclipse.tracecompass.tmf.core.tests.util.AllTests.class
44 })
45 public class AllTmfCoreTests {
46
47 }
This page took 0.032752 seconds and 5 git commands to generate.