aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/androidTest/java/org/sufficientlysecure/keychain/actions/CustomMatchers.java
diff options
context:
space:
mode:
Diffstat (limited to 'OpenKeychain/src/androidTest/java/org/sufficientlysecure/keychain/actions/CustomMatchers.java')
-rw-r--r--OpenKeychain/src/androidTest/java/org/sufficientlysecure/keychain/actions/CustomMatchers.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/OpenKeychain/src/androidTest/java/org/sufficientlysecure/keychain/actions/CustomMatchers.java b/OpenKeychain/src/androidTest/java/org/sufficientlysecure/keychain/actions/CustomMatchers.java
deleted file mode 100644
index 29e875b95..000000000
--- a/OpenKeychain/src/androidTest/java/org/sufficientlysecure/keychain/actions/CustomMatchers.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package org.sufficientlysecure.keychain.actions;
-
-
-import android.support.annotation.ColorRes;
-import android.support.test.espresso.matcher.BoundedMatcher;
-import android.view.View;
-
-import com.nispok.snackbar.Snackbar;
-import org.hamcrest.Description;
-import org.hamcrest.Matcher;
-
-public abstract class CustomMatchers {
-
- public static Matcher<View> withSnackbarLineColor(@ColorRes final int colorRes) {
- return new BoundedMatcher<View, Snackbar>(Snackbar.class) {
- public void describeTo(Description description) {
- description.appendText("with color resource id: " + colorRes);
- }
-
- @Override
- public boolean matchesSafely(Snackbar snackbar) {
- return snackbar.getResources().getColor(colorRes) == snackbar.getLineColor();
- }
- };
- }
-
-}