tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / src / org / eclipse / linuxtools / 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.linuxtools.tmf.core.tests;
15
16 import org.junit.runner.RunWith;
17 import org.junit.runners.Suite;
18
19 /**
20 * Master test suite for TMF Core.
21 */
22 @RunWith(Suite.class)
23 @Suite.SuiteClasses({
24 TmfCorePluginTest.class,
25 org.eclipse.linuxtools.tmf.core.tests.analysis.AllTests.class,
26 org.eclipse.linuxtools.tmf.core.tests.component.AllTests.class,
27 org.eclipse.linuxtools.tmf.core.tests.event.AllTests.class,
28 org.eclipse.linuxtools.tmf.core.tests.event.lookup.AllTests.class,
29 org.eclipse.linuxtools.tmf.core.tests.filter.AllTests.class,
30 org.eclipse.linuxtools.tmf.core.tests.request.AllTests.class,
31 org.eclipse.linuxtools.tmf.core.tests.signal.AllTests.class,
32 org.eclipse.linuxtools.tmf.core.tests.statesystem.AllTests.class,
33 org.eclipse.linuxtools.tmf.core.tests.statesystem.mipmap.AllTests.class,
34 org.eclipse.linuxtools.tmf.core.tests.synchronization.AllTests.class,
35 org.eclipse.linuxtools.tmf.core.tests.trace.AllTests.class,
36 org.eclipse.linuxtools.tmf.core.tests.trace.indexer.AllTests.class,
37 org.eclipse.linuxtools.tmf.core.tests.trace.indexer.checkpoint.AllTests.class,
38 org.eclipse.linuxtools.tmf.core.tests.trace.location.AllTests.class,
39 org.eclipse.linuxtools.tmf.core.tests.trace.stub.AllTests.class,
40 org.eclipse.linuxtools.tmf.core.tests.trace.text.AllTests.class,
41 org.eclipse.linuxtools.tmf.core.tests.uml2sd.AllTests.class,
42 org.eclipse.linuxtools.tmf.core.tests.util.AllTests.class
43 })
44 public class AllTmfCoreTests {
45
46 }
This page took 0.031201 seconds and 5 git commands to generate.