Move misc plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.alltests / src / org / eclipse / linuxtools / lttng / alltests / RunAllUITests.java
CommitLineData
a27c6e65 1/*******************************************************************************
f8fd71a8 2 * Copyright (c) 2013, 2014 Ericsson
a27c6e65
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 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.lttng.alltests;
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
19 * Master test suite for all Linux Tools LTTng unit tests.
20 */
21@RunWith(Suite.class)
22@Suite.SuiteClasses({
a27c6e65 23 org.eclipse.linuxtools.gdbtrace.ui.tests.AllGdbTraceUITests.class,
8e8c0226 24 org.eclipse.linuxtools.lttng2.control.ui.tests.AllTests.class,
a27c6e65 25 org.eclipse.linuxtools.lttng2.kernel.ui.tests.AllTests.class,
91fc3690 26 org.eclipse.linuxtools.lttng2.ust.ui.tests.AllTests.class,
a7d61140 27 org.eclipse.linuxtools.tmf.analysis.xml.ui.tests.AllAnalysisXmlUiTests.class,
a27c6e65
AM
28 org.eclipse.linuxtools.tmf.ui.tests.AllTmfUITests.class,
29})
f8fd71a8 30public class RunAllUITests {
a27c6e65
AM
31
32}
This page took 0.036035 seconds and 5 git commands to generate.