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
1/*******************************************************************************
2 * Copyright (c) 2012, 2015 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 * Matthew Khouzam - Initial generation with CodePro tools
11 * Alexandre Montplaisir - Clean up, consolidate redundant tests
12 *******************************************************************************/
13
14package org.eclipse.tracecompass.tmf.ctf.core.tests;
15
16import org.eclipse.tracecompass.tmf.core.tests.shared.DebugSuite;
17import org.junit.runner.RunWith;
18
19/**
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
22 * package.
23 *
24 * @author ematkho
25 */
26@RunWith(DebugSuite.class)
27@DebugSuite.SuiteClasses({
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,
31 org.eclipse.tracecompass.tmf.ctf.core.tests.trace.AllTests.class,
32
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
37})
38public class AllTests {
39
40}
This page took 0.025457 seconds and 5 git commands to generate.