btf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / ctftestsuite / TestAll.java
CommitLineData
11e4be4e 1/*******************************************************************************
60ae41e1 2 * Copyright (c) 2013, 2014 Ericsson
11e4be4e
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 * Alexandre Montplaisir - Initial API and implementation
10 *******************************************************************************/
11
12package org.eclipse.linuxtools.ctf.core.tests.ctftestsuite;
13
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.
21 *
22 * @author ematkho
11e4be4e
AM
23 */
24@RunWith(Suite.class)
25@Suite.SuiteClasses({
076fe600 26 CtfTestSuiteTests.class
11e4be4e
AM
27})
28public class TestAll {
29
30}
This page took 0.032704 seconds and 5 git commands to generate.