swtbot: Add Control Flow view tests
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.kernel.ui.swtbot.tests / src / org / eclipse / tracecompass / lttng2 / kernel / ui / swtbot / tests / AllTests.java
CommitLineData
ffa8146c 1/*******************************************************************************
2fe6a9ea 2 * Copyright (c) 2013, 2015 Ericsson
ffa8146c
MK
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 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
9bc60be7 13package org.eclipse.tracecompass.lttng2.kernel.ui.swtbot.tests;
ffa8146c
MK
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
19 * Test suite for UI on the lttng kernel perspective
20 */
21@RunWith(Suite.class)
22@Suite.SuiteClasses({
a3d7df19 23 KernelPerspectiveChecker.class,
2fe6a9ea
PT
24 ImportAndReadKernelSmokeTest.class,
25 ControlFlowViewTest.class,
a3d7df19 26 OpenTraceStressTest.class
ffa8146c
MK
27})
28public class AllTests {
29
30}
This page took 0.084408 seconds and 5 git commands to generate.