summaryrefslogtreecommitdiff
path: root/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/SwipeTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/SwipeTest.java')
-rw-r--r--espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/SwipeTest.java96
1 files changed, 0 insertions, 96 deletions
diff --git a/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/SwipeTest.java b/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/SwipeTest.java
deleted file mode 100644
index 46704ec..0000000
--- a/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/SwipeTest.java
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * Copyright (C) 2014 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.google.android.apps.common.testing.ui.testapp;
-
-import static com.google.android.apps.common.testing.ui.espresso.Espresso.onView;
-import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.swipeLeft;
-import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.swipeRight;
-import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches;
-import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isDisplayed;
-import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withId;
-import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withText;
-
-import com.google.android.apps.common.testing.ui.espresso.action.ViewActions;
-
-import android.test.ActivityInstrumentationTestCase2;
-import android.test.suitebuilder.annotation.LargeTest;
-
-/**
- * Demonstrates use of {@link ViewActions#swipeLeft()} and {@link ViewActions#swipeRight()}.
- */
-@LargeTest
-public class SwipeTest extends ActivityInstrumentationTestCase2<ViewPagerActivity> {
-
- @SuppressWarnings("deprecation")
- public SwipeTest() {
- // This constructor was deprecated - but we want to support lower API levels.
- super("com.google.android.apps.common.testing.ui.testapp", ViewPagerActivity.class);
- }
-
- @Override
- protected void setUp() throws Exception {
- super.setUp();
- getActivity();
- }
-
- public void testSwipingThroughViews() {
- // Should be on position 0 to start with.
- onView(withText("Position #0")).check(matches(isDisplayed()));
-
- // Swipe left once.
- onView(withId(R.id.pager_layout)).perform(swipeLeft());
-
- // Now position 1 should be visible.
- onView(withText("Position #1")).check(matches(isDisplayed()));
-
- // Swipe left again.
- onView(withId(R.id.pager_layout)).perform(swipeLeft());
-
- // Now position 2 should be visible.
- onView(withText("Position #2")).check(matches(isDisplayed()));
-
- // Swipe left again.
- onView(withId(R.id.pager_layout)).perform(swipeLeft());
-
- // Position 2 should still be visible as this is the last view in the pager.
- onView(withText("Position #2")).check(matches(isDisplayed()));
- }
-
- public void testSwipingBackAndForward() {
- // Should be on position 0 to start with.
- onView(withText("Position #0")).check(matches(isDisplayed()));
-
- // Swipe left once.
- onView(withId(R.id.pager_layout)).perform(swipeLeft());
-
- // Now position 1 should be visible.
- onView(withText("Position #1")).check(matches(isDisplayed()));
-
- // Swipe back to the right.
- onView(withId(R.id.pager_layout)).perform(swipeRight());
-
- // Now position 0 should be visible again.
- onView(withText("Position #0")).check(matches(isDisplayed()));
-
- // Swipe right again.
- onView(withId(R.id.pager_layout)).perform(swipeRight());
-
- // Position 0 should still be visible as this is the first view in the pager.
- onView(withText("Position #0")).check(matches(isDisplayed()));
- }
-
-}