Remove all "AllTests" suites
[deliverable/tracecompass.git] / releng / org.eclipse.tracecompass.alltests / src / org / eclipse / tracecompass / alltests / swtbot / RunAllSWTBotTests.java
CommitLineData
1752310d 1/*******************************************************************************
2c7fb5af 2 * Copyright (c) 2014, 2015 Ericsson
1752310d
MAL
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 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
730dbd2a 13package org.eclipse.tracecompass.alltests.swtbot;
1752310d
MAL
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
2c7fb5af 19 * Master test suite for all Trace Compass SWTBot unit tests.
1752310d
MAL
20 *
21 * Note that the SWTBot tests need to be executed in a non-UI thread
22 * which is why they are separated in a different test suite.
23 */
24@RunWith(Suite.class)
25@Suite.SuiteClasses({
b0d2c558 26 // FIXME Link to all swtbot tests
1752310d
MAL
27})
28public class RunAllSWTBotTests {
29
30}
This page took 0.048889 seconds and 5 git commands to generate.