b94cab57b8e0f5d1c90e4e1246701812a86add38
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.alltests / src / org / eclipse / linuxtools / lttng / alltests / swtbot / RunAllSWTBotTests.java
1 /*******************************************************************************
2 * Copyright (c) 2014 Ericsson
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
13 package org.eclipse.linuxtools.lttng.alltests.swtbot;
14
15 import org.junit.runner.RunWith;
16 import org.junit.runners.Suite;
17
18 /**
19 * Master test suite for all SWTBot Linux Tools LTTng unit tests.
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({
26 org.eclipse.linuxtools.tmf.ui.swtbot.tests.AllTmfUISWTBotTests.class,
27 org.eclipse.linuxtools.tmf.ctf.ui.swtbot.tests.AllTests.class,
28 org.eclipse.linuxtools.tmf.pcap.ui.swtbot.tests.AllTests.class,
29 org.eclipse.linuxtools.lttng2.kernel.ui.swtbot.tests.AllTests.class
30 })
31 public class RunAllSWTBotTests {
32
33 }
This page took 0.032513 seconds and 4 git commands to generate.