Fix references to linuxtools in comments, examples and unused code
[deliverable/tracecompass.git] / org.eclipse.tracecompass.alltests / src / org / eclipse / tracecompass / alltests / RunAllUITests.java
CommitLineData
a27c6e65 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2015 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
730dbd2a 13package org.eclipse.tracecompass.alltests;
a27c6e65
AM
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
2c7fb5af 19 * Master test suite for all Trace Compass UI unit tests.
a27c6e65
AM
20 */
21@RunWith(Suite.class)
22@Suite.SuiteClasses({
04c0d7d3 23 org.eclipse.tracecompass.gdbtrace.ui.tests.AllGdbTraceUITests.class,
9bc60be7 24 org.eclipse.tracecompass.lttng2.control.ui.tests.AllTests.class,
9bc60be7 25 org.eclipse.tracecompass.lttng2.ust.ui.tests.AllTests.class,
2bdf0193
AM
26 org.eclipse.tracecompass.tmf.analysis.xml.ui.tests.AllAnalysisXmlUiTests.class,
27 org.eclipse.tracecompass.tmf.ui.tests.AllTmfUITests.class,
a27c6e65 28})
f8fd71a8 29public class RunAllUITests {
a27c6e65
AM
30
31}
This page took 0.043168 seconds and 5 git commands to generate.