2 * ownCloud Android client application
5 * Copyright (C) 2015 ownCloud Inc.
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.
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.
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/>.
21 package com
.owncloud
.android
.test
.ui
.testSuites
;
23 public final class Config
{
25 //without http or https
26 public static final String URL
= "owncloudServerVar";
27 public static boolean isTrusted
= true
;
29 //without http or https
30 public static final String URL2
= "owncloudServer2Var";
31 public static boolean isTrusted2
= true
;
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
;
40 public static final String gmailAccount
= "gmailAccountVar";
42 public static final String fileToTestName
= "test";
43 public static final String bigFileToTestName
= "test";
44 public static final String fileToTestSendByEmailName
= "test";
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";