|
@@ -0,0 +1,50 @@
|
|
|
+/**
|
|
|
+ * ownCloud Android client application
|
|
|
+ *
|
|
|
+ * @author purigarcia
|
|
|
+ * Copyright (C) 2015 ownCloud Inc.
|
|
|
+ *
|
|
|
+ * This program is free software: you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU General Public License version 2,
|
|
|
+ * as published by the Free Software Foundation.
|
|
|
+ *
|
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
+ * GNU General Public License for more details.
|
|
|
+ *
|
|
|
+ * You should have received a copy of the GNU General Public License
|
|
|
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+ *
|
|
|
+ */
|
|
|
+
|
|
|
+package com.owncloud.android.test.ui.testSuites;
|
|
|
+
|
|
|
+public final class Config {
|
|
|
+
|
|
|
+ //without http or https
|
|
|
+ public static final String URL = "owncloudServerVar";
|
|
|
+ public static boolean isTrusted = true;
|
|
|
+
|
|
|
+ //without http or https
|
|
|
+ public static final String URL2 = "owncloudServer2Var";
|
|
|
+ public static boolean isTrusted2 = true;
|
|
|
+
|
|
|
+ public static final String user = "owncloudUserVar";
|
|
|
+ public static final String password = "owncloudPasswordVar";
|
|
|
+ public static final String user2 = "owncloudUser2Var";
|
|
|
+ public static final String password2 = "owncloudPassword2Var";
|
|
|
+ public static final String userAccount = user + "@"+ URL;
|
|
|
+ public static final String userAccount2 = user2 + "@"+ URL2;
|
|
|
+
|
|
|
+ public static final String gmailAccount = "gmailAccountVar";
|
|
|
+
|
|
|
+ public static final String fileToTestName = "test";
|
|
|
+ public static final String fileToTestSendByEmailName = "test";
|
|
|
+
|
|
|
+ public static final String passcode1 = "passcode1";
|
|
|
+ public static final String passcode2 = "passcode2";
|
|
|
+ public static final String passcode3 = "passcode3";
|
|
|
+ public static final String passcode4 = "passcode4";
|
|
|
+
|
|
|
+}
|