Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 25 of 257) sorted by relevance

1234567891011

/frameworks/support/core-utils/tests/java/android/support/v4/content/
DMimeTypeFilterTest.java41 assertTrue(MimeTypeFilter.matches("image/jpeg", "*/*")); in matchesBasic()
42 assertTrue(MimeTypeFilter.matches("image/jpeg", "image/*")); in matchesBasic()
43 assertTrue(MimeTypeFilter.matches("image/jpeg", "image/jpeg")); in matchesBasic()
44 assertTrue(MimeTypeFilter.matches("image/jpeg", "*/jpeg")); in matchesBasic()
47 assertFalse(MimeTypeFilter.matches("ImAgE/JpEg", "iMaGe/*")); in matchesBasic()
48 assertFalse(MimeTypeFilter.matches("IMAGE/JPEG", "image/jpeg")); in matchesBasic()
49 assertFalse(MimeTypeFilter.matches("image/jpeg", "IMAGE/JPEG")); in matchesBasic()
51 assertFalse(MimeTypeFilter.matches("image/jpeg", "image/png")); in matchesBasic()
52 assertFalse(MimeTypeFilter.matches("image/jpeg", "video/jpeg")); in matchesBasic()
54 assertFalse(MimeTypeFilter.matches((String) null, "*/*")); in matchesBasic()
[all …]
/frameworks/support/compat/tests/java/android/support/v4/util/
DPatternsCompatTest.java39 assertTrue("Should match 'com'", pattern.matcher("com").matches()); in testIanaTopLevelDomains_matchesValidTld()
45 assertTrue("Should match 'me'", pattern.matcher("me").matches()); in testIanaTopLevelDomains_matchesValidNewTld()
51 assertTrue("Should match Punycode TLD", pattern.matcher("xn--qxam").matches()); in testIanaTopLevelDomains_matchesPunycodeTld()
57 assertTrue("Should match IRI TLD", pattern.matcher("\uD55C\uAD6D").matches()); in testIanaTopLevelDomains_matchesIriTLD()
63 assertFalse("Should not match 'mem'", pattern.matcher("mem").matches()); in testIanaTopLevelDomains_doesNotMatchWrongTld()
69 assertFalse("Should not match invalid Punycode TLD", pattern.matcher("xn").matches()); in testIanaTopLevelDomains_doesNotMatchWrongPunycodeTld()
78 PatternsCompat.WEB_URL.matcher(url).matches()); in testWebUrl_matchesValidUrlWithSchemeAndHostname()
85 PatternsCompat.WEB_URL.matcher(url).matches()); in testWebUrl_matchesValidUrlWithSchemeHostnameAndNewTld()
92 PatternsCompat.WEB_URL.matcher(url).matches()); in testWebUrl_matchesValidUrlWithHostnameAndNewTld()
99 PatternsCompat.WEB_URL.matcher(url).matches()); in testWebUrl_matchesChinesePunycodeUrlWithProtocol()
[all …]
/frameworks/base/core/tests/coretests/src/android/util/
DPatternsTest.java33 t = Patterns.TOP_LEVEL_DOMAIN.matcher("com").matches(); in testTldPattern()
37 t = Patterns.TOP_LEVEL_DOMAIN.matcher("me").matches(); in testTldPattern()
41 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xn--0zwm56d").matches(); in testTldPattern()
45 t = Patterns.TOP_LEVEL_DOMAIN.matcher("\uD55C\uAD6D").matches(); in testTldPattern()
48 t = Patterns.TOP_LEVEL_DOMAIN.matcher("mem").matches(); in testTldPattern()
51 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xn").matches(); in testTldPattern()
54 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xer").matches(); in testTldPattern()
63 assertTrue("Should match 'com'", pattern.matcher("com").matches()); in testIanaTopLevelDomains_matchesValidTld()
69 assertTrue("Should match 'me'", pattern.matcher("me").matches()); in testIanaTopLevelDomains_matchesValidNewTld()
75 assertTrue("Should match Punycode TLD", pattern.matcher("xn--qxam").matches()); in testIanaTopLevelDomains_matchesPunycodeTld()
[all …]
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/le/
DScanFilterTest.java63 assertTrue("setName filter fails", filter.matches(mScanResult)); in testsetNameFilter()
66 assertFalse("setName filter fails", filter.matches(mScanResult)); in testsetNameFilter()
73 assertTrue("device filter fails", filter.matches(mScanResult)); in testDeviceFilter()
76 assertFalse("device filter fails", filter.matches(mScanResult)); in testDeviceFilter()
83 assertTrue("uuid filter fails", filter.matches(mScanResult)); in testsetServiceUuidFilter()
87 assertFalse("uuid filter fails", filter.matches(mScanResult)); in testsetServiceUuidFilter()
93 assertTrue("uuid filter fails", filter.matches(mScanResult)); in testsetServiceUuidFilter()
102 assertTrue("service data filter fails", filter.matches(mScanResult)); in testsetServiceDataFilter()
106 assertTrue("service data filter fails", filter.matches(mScanResult)); in testsetServiceDataFilter()
111 assertTrue("service data filter fails", filter.matches(mScanResult)); in testsetServiceDataFilter()
[all …]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DBluetoothDeviceFilter.java36 boolean matches(BluetoothDevice device); in matches() method
79 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.AllFilter
86 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.BondedDeviceFilter
93 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.UnbondedDeviceFilter
100 abstract boolean matches(ParcelUuid[] uuids, BluetoothClass btClass); in matches() method in BluetoothDeviceFilter.ClassUuidFilter
102 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.ClassUuidFilter
103 return matches(device.getUuids(), device.getBluetoothClass()); in matches()
110 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { in matches() method in BluetoothDeviceFilter.AudioFilter
131 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { in matches() method in BluetoothDeviceFilter.TransferFilter
145 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { in matches() method in BluetoothDeviceFilter.PanuFilter
[all …]
/frameworks/base/core/tests/coretests/src/android/database/
Dprocess_newdb_perf_test_logs.py39 matches = re.search(regex, line)
40 if matches:
41 test_name = matches.group(1)
42 duration = int(matches.group(2))
60 matches = re.search(regex, line)
61 if matches:
62 max_write_bytes = max(max_write_bytes, int(matches.group(1)))
/frameworks/base/core/tests/coretests/src/android/net/
DRouteInfoTest.java80 public boolean matches(InetAddress destination) { in testMatches() method in RouteInfoTest.PatchedRouteInfo
81 return mRouteInfo.matches(destination); in testMatches()
88 assertTrue(r.matches(Address("2001:db8:f00::ace:d00c"))); in testMatches()
89 assertTrue(r.matches(Address("2001:db8:f00::ace:d00d"))); in testMatches()
90 assertFalse(r.matches(Address("2001:db8:f00::ace:d00e"))); in testMatches()
91 assertFalse(r.matches(Address("2001:db8:f00::bad:d00d"))); in testMatches()
92 assertFalse(r.matches(Address("2001:4868:4860::8888"))); in testMatches()
93 assertFalse(r.matches(Address("8.8.8.8"))); in testMatches()
96 assertTrue(r.matches(Address("192.0.2.43"))); in testMatches()
97 assertTrue(r.matches(Address("192.0.3.21"))); in testMatches()
[all …]
/frameworks/support/design/tests/src/android/support/design/widget/
DFloatingActionButtonTest.java37 import static android.support.test.espresso.assertion.ViewAssertions.matches;
78 .check(matches(withFabBackgroundFill(colorAccent))); in testDefaultBackgroundTint()
86 .check(matches(withFabBackgroundFill(Color.GREEN))); in testSetTintOnDefaultBackgroundTint()
93 .check(matches(withFabBackgroundFill(Color.MAGENTA))); in testDeclaredBackgroundTint()
101 .check(matches(withFabBackgroundFill(Color.GREEN))); in testSetTintOnDeclaredBackgroundTint()
120 .check(matches(withFabBackgroundFill(normal))) in testSetStatefulTintAcrossStateChanges()
122 .check(matches(withFabBackgroundFill(notSelected))) in testSetStatefulTintAcrossStateChanges()
124 .check(matches(withFabBackgroundFill(normal))); in testSetStatefulTintAcrossStateChanges()
137 .check(matches(withFabBackgroundFill(normal))) in testDeclaredStatefulTintAcrossStateChanges()
139 .check(matches(withFabBackgroundFill(disabled))); in testDeclaredStatefulTintAcrossStateChanges()
[all …]
DAppBarWithCollapsingToolbarStateRestoreTest.java23 import static android.support.test.espresso.assertion.ViewAssertions.matches;
59 .check(matches(hasZ())) in testRecreateAndRestore()
60 .check(matches(isCollapsed())); in testRecreateAndRestore()
67 .check(matches(hasZ())) in testRecreateAndRestore()
68 .check(matches(isCollapsed())); in testRecreateAndRestore()
DTextInputLayoutTest.java42 import static android.support.test.espresso.assertion.ViewAssertions.matches;
139 onView(withText(ERROR_MESSAGE_1)).check(matches(isDisplayed())); in testSetErrorEnablesErrorIsDisplayed()
163 onView(withText(ERROR_MESSAGE_2)).check(matches(isDisplayed())); in testSetErrorOnDisabledSetErrorIsDisplayed()
200 onView(withId(R.id.textinput_password)).check(matches(doesNotShowPasswordToggle())); in testPasswordToggleDisable()
240 .check(matches(withCompoundDrawable(0, start))) in testPasswordToggleMaintainsCompoundDrawables()
241 .check(matches(withCompoundDrawable(1, top))) in testPasswordToggleMaintainsCompoundDrawables()
242 .check(matches(not(withCompoundDrawable(2, end)))) in testPasswordToggleMaintainsCompoundDrawables()
243 .check(matches(withCompoundDrawable(3, bottom))); in testPasswordToggleMaintainsCompoundDrawables()
250 .check(matches(withCompoundDrawable(0, start))) in testPasswordToggleMaintainsCompoundDrawables()
251 .check(matches(withCompoundDrawable(1, top))) in testPasswordToggleMaintainsCompoundDrawables()
[all …]
DNavigationViewTest.java41 import static android.support.test.espresso.assertion.ViewAssertions.matches;
144 isDescendantOfA(withId(R.id.start_drawer)))).check(matches(isDisplayed())); in testBasics()
176 matches(withTextSize(defaultTextSize))); in testTextAppearance()
187 matches(withTextSize(newTextSize))); in testTextAppearance()
204 matches(withTextColor(defaultTextColor))); in testTextColor()
217 matches(withTextColor(newTextColor))); in testTextColor()
242 onView(menuItemMatcher).check(matches(withBackgroundFill(defaultFillColor))); in testBackground()
258 onView(menuItemMatcher).check(matches(withBackgroundFill(newFillColorBlue))); in testBackground()
274 onView(menuItemMatcher).check(matches(withBackgroundFill(newFillColorGreen))); in testBackground()
313 isDescendantOfA(withId(R.id.start_drawer)))).check(matches( in testIconTinting()
[all …]
/frameworks/av/media/libmedia/
DCharacterEncodingDetector.cpp119 int32_t matches; in detectAndConvert() local
120 const UCharsetMatch** ucma = ucsdet_detectAll(csd, &matches, &status); in detectAndConvert()
122 ucma, matches, &goodmatch, &highest); in detectAndConvert()
148 ucma = ucsdet_detectAll(csd, &matches, &status); in detectAndConvert()
150 ucma, matches, &goodmatch, &highest); in detectAndConvert()
186 int32_t matches; in detectAndConvert() local
190 const UCharsetMatch** ucma = ucsdet_detectAll(csd, &matches, &status); in detectAndConvert()
192 ucma, matches, &goodmatchSingle, &highestSingle); in detectAndConvert()
302 Vector<const UCharsetMatch*> matches; in getPreferred() local
310 matches.push_back(ucma[i]); in getPreferred()
[all …]
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
DNightModeTestCase.java20 import static android.support.test.espresso.assertion.ViewAssertions.matches;
64 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_DAY))); in testLocalDayNightModeRecreatesActivity()
71 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_NIGHT))); in testLocalDayNightModeRecreatesActivity()
87 onView(withId(R.id.view_background)).check(matches(isBackground(dayColor))); in testColorConvertedDrawableChangesWithNightMode()
92 onView(withId(R.id.view_background)).check(matches(isBackground(nightColor))); in testColorConvertedDrawableChangesWithNightMode()
106 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_DAY))); in testNightModeAutoRecreatesOnTimeChange()
127 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_NIGHT))); in testNightModeAutoRecreatesOnTimeChange()
141 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_DAY))); in testNightModeAutoRecreatesOnResume()
162 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_NIGHT))); in testNightModeAutoRecreatesOnResume()
DBaseKeyEventsTestCase.java22 import static android.support.test.espresso.assertion.ViewAssertions.matches;
121 .check(matches(isDisplayed())); in testBackCollapsesActionView()
207 .check(matches(isDisplayed())) in testActionMenuContent()
208 .check(matches(withContentDescription(R.string.search_menu_description))); in testActionMenuContent()
211 .check(matches(isDisplayed())) in testActionMenuContent()
212 .check(matches(withContentDescription((String) null))); in testActionMenuContent()
229 .check(matches(isDisplayed())) in testActionMenuContent()
230 .check(matches(withContentDescription(R.string.alpha_menu_description))); in testActionMenuContent()
DAlertDialogTest.java23 import static android.support.test.espresso.assertion.ViewAssertions.matches;
168 onView(withText(expectedTitle)).inRoot(isDialog()).check(matches(isDisplayed())); in testBasicContent()
169 onView(withText(expectedMessage)).inRoot(isDialog()).check(matches(isDisplayed())); in testBasicContent()
195 onView(withText(dialogMessage)).inRoot(isDialog()).check(matches(isDisplayed())); in testMessageString()
210 onView(withText(dialogInitialMessage)).inRoot(isDialog()).check(matches(isDisplayed())); in testMessageStringPostCreation()
222 onView(withText(dialogUpdatedMessage)).inRoot(isDialog()).check(matches(isDisplayed())); in testMessageStringPostCreation()
244 matches(isCompletelyDisplayed())); in verifyCustomTitle()
246 matches(not(hasEllipsizedText()))); in verifyCustomTitle()
247 onView(withText(expectedMessage)).inRoot(isDialog()).check(matches(isDisplayed())); in verifyCustomTitle()
310 matches(isCompletelyDisplayed())); in verifyCustomView()
[all …]
/frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
DCamera2UtilsTest.java241 assertTrue(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, null)); in requestSettingsSetMatchesPrimitives()
242 assertFalse(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, false)); in requestSettingsSetMatchesPrimitives()
243 assertFalse(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, true)); in requestSettingsSetMatchesPrimitives()
246 assertTrue(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, null)); in requestSettingsSetMatchesPrimitives()
247 assertFalse(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, false)); in requestSettingsSetMatchesPrimitives()
248 assertFalse(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, true)); in requestSettingsSetMatchesPrimitives()
251 assertFalse(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, null)); in requestSettingsSetMatchesPrimitives()
252 assertTrue(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, false)); in requestSettingsSetMatchesPrimitives()
253 assertFalse(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, true)); in requestSettingsSetMatchesPrimitives()
256 assertFalse(setUp.matches(CaptureRequest.CONTROL_AE_LOCK, null)); in requestSettingsSetMatchesPrimitives()
[all …]
/frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
DPopupMenuTest.java22 import static android.support.test.espresso.assertion.ViewAssertions.matches;
152 .inRoot(isPlatformPopup()).check(matches(isDisplayed())); in testBasicContent()
159 onData(anything()).atPosition(0).check(matches(isDisplayed())); in testBasicContent()
162 .check(matches(isDisplayed())) in testBasicContent()
163 .check(matches(selfOrParentWithContentDescription( in testBasicContent()
165 onData(anything()).atPosition(1).check(matches(isDisplayed())); in testBasicContent()
168 .check(matches(isDisplayed())) in testBasicContent()
169 .check(matches(selfOrParentWithContentDescription( in testBasicContent()
171 onData(anything()).atPosition(2).check(matches(isDisplayed())); in testBasicContent()
174 .check(matches(isDisplayed())); in testBasicContent()
[all …]
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
DFloatingToolbarEspressoUtils.java21 import static android.support.test.espresso.assertion.ViewAssertions.matches;
80 onFloatingToolBar().check(matches(isDisplayed())); in assertFloatingToolbarIsDisplayed()
90 onFloatingToolBar().check(matches(isDisplayed())); in assertFloatingToolbarIsNotDisplayed()
117 onFloatingToolBar().check(matches(hasDescendant(withText(itemLabel)))); in assertFloatingToolbarContainsItem()
126 onFloatingToolBar().check(matches(hasDescendant(withText(itemLabel)))); in assertFloatingToolbarContainsItem()
141 onFloatingToolBar().check(matches(new TypeSafeMatcher<View>() { in assertFloatingToolbarItemIndex()
188 onFloatingToolBar().check(matches(new TypeSafeMatcher<View>() { in assertFloatingToolbarDoesNotContainItem()
221 onFloatingToolBarItem(withText(itemLabel)).check(matches(isDisplayed())); in clickFloatingToolbarItem()
DSuggestionsPopupwindowUtils.java20 import static android.support.test.espresso.assertion.ViewAssertions.matches;
58 onSuggestionsPopup().check(matches(isDisplayed())); in assertSuggestionsPopupIsDisplayed()
68 onSuggestionsPopup().check(matches(isDisplayed())); in assertSuggestionsPopupIsNotDisplayed()
82 onSuggestionsPopupItem(withText(itemLabel)).check(matches(isDisplayed())); in assertSuggestionsPopupContainsItem()
/frameworks/base/services/usb/java/com/android/server/usb/
DUsbProfileGroupSettingsManager.java289 private boolean matches(int clasz, int subclass, int protocol) { in matches() method in UsbProfileGroupSettingsManager.DeviceFilter
295 public boolean matches(UsbDevice device) { in matches() method in UsbProfileGroupSettingsManager.DeviceFilter
309 if (matches(device.getDeviceClass(), device.getDeviceSubclass(), in matches()
316 if (matches(intf.getInterfaceClass(), intf.getInterfaceSubclass(), in matches()
348 return matches(device.mClass, device.mSubclass, device.mProtocol); in contains()
501 public boolean matches(UsbAccessory acc) { in matches() method in UsbProfileGroupSettingsManager.AccessoryFilter
854 if (filter.matches(device)) { in packageMatchesLocked()
860 if (filter.matches(accessory)) { in packageMatchesLocked()
914 private ArrayList<ResolveInfo> preferHighPriority(@NonNull ArrayList<ResolveInfo> matches) { in preferHighPriority() argument
920 int numMatches = matches.size(); in preferHighPriority()
[all …]
/frameworks/base/core/java/android/companion/
DDeviceFilter.java47 boolean matches(D device); in matches() method
60 static <D extends Parcelable> boolean matches(@Nullable DeviceFilter<D> filter, D device) { in matches() method
61 return filter == null || filter.matches(device); in matches()
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DMockUtils.java41 public boolean matches(Object item) { in checkUserHandle()
57 public boolean matches(Object item) { in checkIntentComponent()
73 public boolean matches(Object item) { in checkIntentAction()
89 public boolean matches(Object item) { in checkIntent()
105 public boolean matches(Object item) { in checkUserRestrictions()
/frameworks/support/wear/tests/src/android/support/wear/widget/drawer/
DWearableDrawerLayoutEspressoTest.java22 import static android.support.test.espresso.assertion.ViewAssertions.matches;
124 onView(withId(R.id.action_drawer)).check(matches(isPeeking())); in swipingDownNavigationDrawerDoesNotCloseActionDrawer()
125 onView(withId(R.id.navigation_drawer)).check(matches(isPeeking())); in swipingDownNavigationDrawerDoesNotCloseActionDrawer()
136 onView(withId(R.id.action_drawer)).check(matches(isPeeking())); in swipingDownNavigationDrawerDoesNotCloseActionDrawer()
153 onView(withId(R.id.ws_nav_drawer_text)).check(matches(withText("0"))); in firstNavDrawerItemShouldBeSelectedInitially()
199 .check(matches(withText("1"))); in programmaticallySelectingNavItemChangesTextInSinglePage()
219 .check(matches(withText("1"))); in programmaticallySelectingNavItemChangesTextInMultiPage()
234 onView(withId(R.id.navigation_drawer)).check(matches(isOpened(true))); in navDrawerShouldOpenWhenCalledInOnCreate()
248 onView(withId(R.id.action_drawer)).check(matches(isOpened(true))); in actionDrawerShouldOpenWhenCalledInOnCreate()
264 .check(matches(isOpened(true))) in navDrawerShouldOpenWhenCalledInOnCreateAndThenCloseWhenRequested()
[all …]
/frameworks/base/services/core/java/com/android/server/policy/
DPolicyControl.java68 if (sImmersiveStatusFilter != null && sImmersiveStatusFilter.matches(attrs)) { in getSystemUiVisibility()
75 if (sImmersiveNavigationFilter != null && sImmersiveNavigationFilter.matches(attrs)) { in getSystemUiVisibility()
88 if (sImmersiveStatusFilter != null && sImmersiveStatusFilter.matches(attrs)) { in getWindowFlags()
93 if (sImmersiveNavigationFilter != null && sImmersiveNavigationFilter.matches(attrs)) { in getWindowFlags()
101 if (sImmersiveStatusFilter != null && sImmersiveStatusFilter.matches(attrs)) { in adjustClearableFlags()
109 && sImmersivePreconfirmationsFilter.matches(pkg)) in disableImmersiveConfirmation()
195 boolean matches(LayoutParams attrs) { in matches() method in PolicyControl.Filter
205 boolean matches(String packageName) { in matches() method in PolicyControl.Filter
/frameworks/support/core-ui/tests/java/android/support/v4/view/
DBaseViewPagerTest.java28 import static android.support.test.espresso.assertion.ViewAssertions.matches;
324 assertThat(pageSelectedCaptor.getAllValues(), TestUtilsMatchers.matches(1, 2, 1, 0)); in verifyPageSelections()
397 assertThat(pageSelectedCaptor.getAllValues(), TestUtilsMatchers.matches(1, 2, 1, 0)); in verifyPageChangeViewActions()
439 onView(withId(R.id.page_0)).check(matches(allOf( in verifyPageContent()
443 onView(withId(R.id.page_1)).check(matches(not(isDisplayed()))); in verifyPageContent()
450 onView(withId(R.id.page_0)).check(matches(not(isDisplayed()))); in verifyPageContent()
451 onView(withId(R.id.page_1)).check(matches(allOf( in verifyPageContent()
455 onView(withId(R.id.page_2)).check(matches(not(isDisplayed()))); in verifyPageContent()
463 onView(withId(R.id.page_1)).check(matches(not(isDisplayed()))); in verifyPageContent()
464 onView(withId(R.id.page_2)).check(matches(allOf( in verifyPageContent()
[all …]

1234567891011