rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / AllTests.java
CommitLineData
95bf10e7 1/*******************************************************************************
da707390 2 * Copyright (c) 2012, 2015 Ericsson
95bf10e7
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 * Matthew Khouzam - Initial generation with CodePro tools
11 * Alexandre Montplaisir - Clean up, consolidate redundant tests
12 *******************************************************************************/
13
2bdf0193 14package org.eclipse.tracecompass.tmf.ctf.core.tests;
81c8e6f7 15
df666eeb 16import org.eclipse.tracecompass.tmf.core.tests.shared.DebugSuite;
81c8e6f7 17import org.junit.runner.RunWith;
81c8e6f7
MK
18
19/**
9722e5d7
AM
20 * The class <code>TestAll</code> builds a suite that can be used to run all of
21 * the tests within its package as well as within any subpackages of its
81c8e6f7
MK
22 * package.
23 *
81c8e6f7 24 * @author ematkho
81c8e6f7 25 */
df666eeb
AM
26@RunWith(DebugSuite.class)
27@DebugSuite.SuiteClasses({
9722e5d7
AM
28 org.eclipse.tracecompass.tmf.ctf.core.tests.context.AllTests.class,
29 org.eclipse.tracecompass.tmf.ctf.core.tests.event.AllTests.class,
30 org.eclipse.tracecompass.tmf.ctf.core.tests.iterator.AllTests.class,
9722e5d7 31 org.eclipse.tracecompass.tmf.ctf.core.tests.trace.AllTests.class,
91e7f946 32
9722e5d7
AM
33 /* Tests in other packages (that are there because of CTF) */
34 org.eclipse.tracecompass.tmf.ctf.core.tests.temp.request.AllTests.class,
35 org.eclipse.tracecompass.tmf.ctf.core.tests.temp.statistics.AllTests.class,
36 org.eclipse.tracecompass.tmf.ctf.core.tests.temp.tracemanager.AllTests.class
81c8e6f7 37})
6e1886bc 38public class AllTests {
81c8e6f7 39
81c8e6f7 40}
This page took 0.083925 seconds and 5 git commands to generate.