18e5edc0712d9d3494f7cddf52df52e92abf5d41
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / views / uml2sd / loader / IUml2SDTestConstants.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2013 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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.loader;
13
14 /**
15 * Common constants for the TMF UML2SD test cases
16 * @author Bernd Hufmann
17 */
18 public interface IUml2SDTestConstants {
19
20 /**
21 * Timeout for waiting of jobs to finish (in milliseconds).
22 */
23 public static final int WAIT_FOR_JOBS_DELAY = 1000;
24 /**
25 * Timeout for waiting for GUI display to refresh (in milliseconds).
26 */
27 public static final int GUI_REFESH_DELAY = 1000;
28 /**
29 * Initial delay before indexing (in milliseconds).
30 */
31 public static final int INITIAL_INDEX_DELAY = 1000;
32 /**
33 * Delay after broadcasting a TMF signal (in milliseconds)
34 */
35 public static final int BROADCAST_DELAY = 2000;
36 /**
37 * Total number of pages of test trace.
38 */
39 public static final int TOTAL_NUMBER_OF_PAGES = 9;
40 /**
41 * Number of messages per page (as defined for loader class)
42 */
43 public static final int MAX_MESSEAGES_PER_PAGE = 10000;
44 /**
45 * Number of messages of last page of the test trace.
46 */
47 public static final int NUM_MESSAGES_OF_LAST_PAGE = 32;
48 /**
49 * Default number of lifelines of test trace.
50 */
51 public static final int DEFAULT_NUM_LIFELINES = 2;
52 /**
53 * Number of lifelines of test trace when all lifelines are visible.
54 */
55 public static final int NUM_OF_ALL_LIFELINES = 3;
56 /**
57 * Page number of test trace where all lifelines are visible.
58 */
59 public static final int PAGE_OF_ALL_LIFELINES = 4;
60 /**
61 * Time scale of test trace.
62 */
63 public static final byte TIME_SCALE = -9;
64 /**
65 * Master player name (property of test trace)
66 */
67 public static final String MASTER_PLAYER_NAME = "Master";
68 /**
69 * First player name (property of test trace)
70 */
71 public static final String FIRST_PLAYER_NAME = "player1";
72 /**
73 * Second player name (property of test trace)
74 */
75 public static final String SECOND_PLAYER_NAME = "player2";
76
77 }
This page took 0.033184 seconds and 4 git commands to generate.