d2ab77f78d38456c62675ae19c36a89be4ec6c1d
[pub/Android/ownCloud.git] / automationTest / src / test / java / com / owncloud / android / test / ui / testSuites / Config.java
1 /**
2 * ownCloud Android client application
3 *
4 * @author purigarcia
5 * Copyright (C) 2015 ownCloud Inc.
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2,
9 * as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21 package com.owncloud.android.test.ui.testSuites;
22
23 public final class Config {
24
25 //without http or https
26 public static final String URL = "owncloudServerVar";
27 public static boolean isTrusted = true;
28
29 //without http or https
30 public static final String URL2 = "owncloudServer2Var";
31 public static boolean isTrusted2 = true;
32
33 public static final String user = "owncloudUserVar";
34 public static final String password = "owncloudPasswordVar";
35 public static final String user2 = "owncloudUser2Var";
36 public static final String password2 = "owncloudPassword2Var";
37 public static final String userAccount = user + "@"+ URL;
38 public static final String userAccount2 = user2 + "@"+ URL2;
39
40 public static final String gmailAccount = "gmailAccountVar";
41
42 public static final String fileToTestName = "test";
43 public static final String bigFileToTestName = "test";
44 public static final String fileToTestSendByEmailName = "test";
45
46 public static final String passcode1 = "passcode1";
47 public static final String passcode2 = "passcode2";
48 public static final String passcode3 = "passcode3";
49 public static final String passcode4 = "passcode4";
50
51 }