lttng : Add SWTBot test for TimeGraphFindDialog
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.kernel.ui.swtbot.tests / src / org / eclipse / tracecompass / lttng2 / kernel / ui / swtbot / tests / ControlFlowViewFindTest.java
1 /*******************************************************************************
2 * Copyright (c) 2016 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 package org.eclipse.tracecompass.lttng2.kernel.ui.swtbot.tests;
10
11 /**
12 * SWTBot test for Resources view Find dialod
13 *
14 * @author Jean-Christian Kouame
15 */
16 public class ControlFlowViewFindTest extends FindDialogTestBase {
17
18 private static final String TITLE = "Control Flow";
19 private static final String TEXT = "IDLE";
20
21 @Override
22 protected String getViewTitle() {
23 return TITLE;
24 }
25
26 @Override
27 protected String getFindText() {
28 return TEXT;
29 }
30
31 }
This page took 0.044034 seconds and 5 git commands to generate.