Back to project page watchme.
The source code is released under:
Copyright (c) 2012 Johan Brook, Robin Andersson, Lisa Stenberg, Mattias Henriksson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documen...
If you think the Android project watchme listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package se.chalmers.watchmetest; //from w ww. j a v a 2s. c om /** * A class containing constant values used in testing of the application WatchME * @author mattiashenriksson * */ public class Constants { /** * Index for "Add movie"-button in add movie view in robotium ui-tests. */ public static final int ADD_MOVIE_BUTTON = 1; /** * Index for title text field in add movie view in robotium ui-tests. */ public static final int TITLE_FIELD = 0; /** * Index for tag field in add movie view in robotium ui-tests. */ public static final int TAG_FIELD = 1; /** * Index for note field in add movie view in robotium ui-tests. */ public static final int NOTE_FIELD = 2; /** * Index for date picker in add movie view in robotium ui-tests. */ public static final int DATE_PICKER = 0; /** * Index for rating bar in add movie view in robotium ui-tests. */ public static final int RATING_BAR = 0; /** * When added in view pager fragment gets an id. This is the tag lists id. */ public static final int TAG_LIST_FRAGMENT_VIEW_PAGER_ID = 1; /** * When added in view pager fragment gets an id. This is the tag lists id. */ public static final int MOVIE_LIST_FRAGMENT_VIEW_PAGER_ID = 0; /** * Milliseconds to wait before closing a dialog in robotium ui-tests. */ public static final int WAIT_FOR_DIALOG_TO_CLOSE_TIME = 1000; }