rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core.tests / src / org / eclipse / tracecompass / ctf / core / tests / AllCtfCoreTests.java
CommitLineData
4bd7f2db 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
4bd7f2db
AM
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11
f357bcd4 12package org.eclipse.tracecompass.ctf.core.tests;
866e5b51 13
866e5b51
FC
14import org.junit.runner.RunWith;
15import org.junit.runners.Suite;
16
17/**
18 * The class <code>TestAll</code> builds a suite that can be used to run all of
19 * the tests within its package as well as within any subpackages of its
20 * package.
4c9d2941 21 *
866e5b51 22 * @author ematkho
c9fe9175 23 * @version 1.0
866e5b51
FC
24 */
25@RunWith(Suite.class)
c9fe9175 26@Suite.SuiteClasses({
a4fa4e36 27 CtfCorePluginTest.class,
f357bcd4
AM
28 org.eclipse.tracecompass.ctf.core.tests.ctftestsuite.TestAll.class,
29 org.eclipse.tracecompass.ctf.core.tests.event.TestAll.class,
30 org.eclipse.tracecompass.ctf.core.tests.io.TestAll.class,
31 org.eclipse.tracecompass.ctf.core.tests.scope.TestAll.class,
32 org.eclipse.tracecompass.ctf.core.tests.trace.TestAll.class,
33 org.eclipse.tracecompass.ctf.core.tests.types.TestAll.class
866e5b51
FC
34})
35public class AllCtfCoreTests {
866e5b51 36}
This page took 0.060206 seconds and 5 git commands to generate.