diff options
author | Mohamed Zenadi <mohamed@zenadi.com> | 2015-06-20 17:10:51 +0200 |
---|---|---|
committer | Mohamed Zenadi <mohamed@zenadi.com> | 2015-06-20 17:10:51 +0200 |
commit | 679d7f111e295d3a2b90ebafa8c4149d868bf30f (patch) | |
tree | 59708dc8a17e1d35c18d956c3cfdebac8a98f147 | |
parent | e02cf0f2d1e1e8aa8fd561d59f6c12c9e16f1ba6 (diff) |
version bumpv1.2.0.23
-rw-r--r-- | app/build.gradle | 4 | ||||
-rw-r--r-- | app/src/androidTest/java/com/zeapo/pwdstore/RepositoryCreation.java | 37 |
2 files changed, 39 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 468f5c87..7d2bd5fd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.zeapo.pwdstore" minSdkVersion 15 targetSdkVersion 22 - versionCode 42 - versionName "1.2.0.22" + versionCode 43 + versionName "1.2.0.23" } compileOptions { diff --git a/app/src/androidTest/java/com/zeapo/pwdstore/RepositoryCreation.java b/app/src/androidTest/java/com/zeapo/pwdstore/RepositoryCreation.java new file mode 100644 index 00000000..8e1edb95 --- /dev/null +++ b/app/src/androidTest/java/com/zeapo/pwdstore/RepositoryCreation.java @@ -0,0 +1,37 @@ +package com.zeapo.pwdstore; + +import android.app.Activity; +import android.app.Instrumentation; +import android.content.Intent; +import android.content.SharedPreferences; +import android.preference.PreferenceManager; +import android.test.ActivityInstrumentationTestCase2; + +public class RepositoryCreation extends ActivityInstrumentationTestCase2<PasswordStore> { + private Activity passwordStore; + Instrumentation mInstrumentation; + SharedPreferences settings; + + public RepositoryCreation() { + super(PasswordStore.class); + } + + protected void setUp() throws Exception { + super.setUp(); + mInstrumentation = getInstrumentation(); + Intent intent = new Intent(); + setActivityIntent(intent); + + passwordStore = getActivity(); // get a references to the app under test + assertNotNull(passwordStore); + settings = PreferenceManager.getDefaultSharedPreferences(passwordStore.getApplicationContext()); + settings.edit().clear().apply(); + } + + /** + * If we change from ssh protocol to https we automatically switch to username/password auth + * @throws Exception + */ + public void testSpinnerChange() throws Exception{ + } +} |