tmf: move custom parser tests from tmf.ui.tests to tmf.core.tests
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core.tests / src / org / eclipse / tracecompass / tmf / core / tests / AllTmfCoreTests.java
CommitLineData
2bdf0193
AM
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
14package org.eclipse.tracecompass.tmf.core.tests;
15
df666eeb 16import org.eclipse.tracecompass.tmf.core.tests.shared.DebugSuite;
2bdf0193 17import org.junit.runner.RunWith;
2bdf0193
AM
18
19/**
20 * Master test suite for TMF Core.
21 */
df666eeb
AM
22@RunWith(DebugSuite.class)
23@DebugSuite.SuiteClasses({
2bdf0193
AM
24 TmfCorePluginTest.class,
25 org.eclipse.tracecompass.tmf.core.tests.analysis.AllTests.class,
e740b3f0 26 org.eclipse.tracecompass.tmf.core.tests.callstack.AllTests.class,
2bdf0193
AM
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,
05af6c11 31 org.eclipse.tracecompass.tmf.core.tests.model.AllTests.class,
45055c6d 32 org.eclipse.tracecompass.tmf.core.tests.parsers.custom.AllTests.class,
2bdf0193
AM
33 org.eclipse.tracecompass.tmf.core.tests.request.AllTests.class,
34 org.eclipse.tracecompass.tmf.core.tests.signal.AllTests.class,
35 org.eclipse.tracecompass.tmf.core.tests.statesystem.AllTests.class,
36 org.eclipse.tracecompass.tmf.core.tests.statesystem.mipmap.AllTests.class,
37 org.eclipse.tracecompass.tmf.core.tests.synchronization.AllTests.class,
38 org.eclipse.tracecompass.tmf.core.tests.trace.AllTests.class,
39 org.eclipse.tracecompass.tmf.core.tests.trace.indexer.AllTests.class,
40 org.eclipse.tracecompass.tmf.core.tests.trace.indexer.checkpoint.AllTests.class,
41 org.eclipse.tracecompass.tmf.core.tests.trace.location.AllTests.class,
42 org.eclipse.tracecompass.tmf.core.tests.trace.text.AllTests.class,
43 org.eclipse.tracecompass.tmf.core.tests.uml2sd.AllTests.class,
44 org.eclipse.tracecompass.tmf.core.tests.util.AllTests.class
45})
46public class AllTmfCoreTests {
47
48}
This page took 0.070844 seconds and 5 git commands to generate.