summaryrefslogtreecommitdiff
path: root/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/LongListMatchersTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/LongListMatchersTest.java')
-rw-r--r--espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/LongListMatchersTest.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/LongListMatchersTest.java b/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/LongListMatchersTest.java
deleted file mode 100644
index 3b80757..0000000
--- a/espresso/espresso-sample/src/androidTest/java/com/google/android/apps/common/testing/ui/testapp/LongListMatchersTest.java
+++ /dev/null
@@ -1,57 +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.matcher.ViewMatchers.assertThat;
-import static com.google.android.apps.common.testing.ui.testapp.LongListMatchers.withItemContent;
-import static com.google.android.apps.common.testing.ui.testapp.LongListMatchers.withItemSize;
-import static org.hamcrest.Matchers.anyOf;
-import static org.hamcrest.Matchers.endsWith;
-import static org.hamcrest.Matchers.equalTo;
-
-import android.content.Intent;
-import android.test.ActivityUnitTestCase;
-
-/**
- * UnitTests for LongListMatchers matcher factory.
- */
-public final class LongListMatchersTest extends ActivityUnitTestCase<LongListActivity> {
-
- public LongListMatchersTest() {
- super(LongListActivity.class);
- }
-
- @Override
- public void setUp() throws Exception {
- super.setUp();
- startActivity(new Intent(getInstrumentation().getTargetContext(), LongListActivity.class),
- null, null);
- }
-
- public void testWithContent() {
- assertThat(getActivity().makeItem(54), withItemContent("item: 54"));
- assertThat(getActivity().makeItem(54), withItemContent(endsWith("54")));
- assertFalse(withItemContent("hello world").matches(getActivity().makeItem(54)));
- }
-
- @SuppressWarnings("unchecked")
- public void testWithItemSize() {
- assertThat(getActivity().makeItem(54), withItemSize(8));
- assertThat(getActivity().makeItem(54), withItemSize(anyOf(equalTo(8), equalTo(7))));
- assertFalse(withItemSize(7).matches(getActivity().makeItem(54)));
- }
-}