Home
last modified time | relevance | path

Searched refs:withId (Results 1 – 8 of 8) sorted by relevance

/compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/viewinterop/
DNestedScrollInteropViewHolderTest.kt34 import androidx.test.espresso.matcher.ViewMatchers.withId
71 onView(withId(R.id.main_list)) in nestedScrollInteropIsOff_shouldNotPropagateDeltas()
90 onView(withId(R.id.main_layout)).perform(swipeUp()) in nestedScrollInteropIsOn_shouldPropagateDeltas()
110 onView(withId(R.id.main_list)).perform(swipeUp()) in nestedScrollInteropIsOn_checkDeltasCorrectlyPropagate()
131 onView(withId(R.id.main_list)).perform(swipeUp()) in nestedScrollInteropIsOn_checkDeltasCorrectlyPropagatePostScroll()
157 Espresso.onView(withId(R.id.main_list)).perform(swipeUp()) in nestedScrollInteropIsOn_consumedUpChain_checkDeltasCorrectlyPropagatePostScroll()
178 onView(withId(R.id.main_list)).perform(swipeUp()) in nestedScrollInteropIsOn_checkDeltasCorrectlyPropagatePreFling()
199 onView(withId(R.id.main_list)).perform(swipeUp()) in nestedScrollInteropIsOn_checkDeltasCorrectlyPropagatePostFling()
DNestedScrollInteropConnectionTest.kt55 import androidx.test.espresso.matcher.ViewMatchers.withId
169 onView(withId(R.id.fab)).check(matches(not(isDisplayed()))) in swipeComposeScrollable_insideNestedScrollingParentView_shouldScrollViewToo()
230 onView(withId(R.id.fab)).check(matches(isDisplayed())) in swipeTurnOffNestedInterop_insideNestedScrollingParentView_shouldNotScrollView()
247 onView(withId(R.id.fab)).check(matches(isDisplayed())) in swipeComposeUpAndDown_insideNestedScrollingParentView_shouldPutViewToStartingPosition()
267 onView(withId(R.id.fab)).check(matches(not(isDisplayed()))) in swipeComposeScrollable_byAppBarSize_shouldCollapseToolbar()
276 onView(withId(R.id.app_bar)).perform(click(), swipeUp()) in swipeNestedScrollingParentView_hasComposeScrollable_shouldNotScrollElement()
281 onView(withId(R.id.fab)).check(matches(not(isDisplayed()))) in swipeNestedScrollingParentView_hasComposeScrollable_shouldNotScrollElement()
DVelocityTrackingParityTest.kt61 import androidx.test.espresso.matcher.ViewMatchers.withId in <lambda>()
394 Espresso.onView(withId(id)) in smallGestureVeryFast()
405 Espresso.onView(withId(id)) in smallGestureFast()
416 Espresso.onView(withId(id)) in smallGestureSlow()
427 Espresso.onView(withId(id)) in largeGestureFast()
438 Espresso.onView(withId(id)) in largeGestureVeryFast()
449 Espresso.onView(withId(id)) in orthogonalGesture()
460 Espresso.onView(withId(id)) in regularGestureOne()
471 Espresso.onView(withId(id)) in regularGestureTwo()
DNestedScrollInteropThreeFoldTest.kt34 import androidx.test.espresso.matcher.ViewMatchers.withId
166 onView(withId(R.id.fab)).check(matches((isDisplayed()))) in threeFoldNestedScrollVCV_composeConsumes_shouldPropagateCorrectly()
/compose/integration-tests/macrobenchmark-target/src/main/java/androidx/compose/integration/macrobenchmark/target/complexdifferenttypeslist/
DSquadMapper.kt24 import androidx.compose.integration.macrobenchmark.target.complexdifferenttypeslist.common.withId in <lambda>()
37 add(CommonAdapterItemType.SPACE_12.withId("top_spacing")) in <lambda>()
39 add(CommonAdapterItemType.SPACE_24.withId("manager_section_top_spacing")) in <lambda>()
49 add(CommonAdapterItemType.SPACE_24.withId("attackers_section_top_spacing")) in <lambda>()
59 add(CommonAdapterItemType.SPACE_24.withId("midfielders_section_top_spacing")) in <lambda>()
69 add(CommonAdapterItemType.SPACE_24.withId("defenders_section_top_spacing")) in <lambda>()
79 add(CommonAdapterItemType.SPACE_24.withId("goalkeepers_section_top_spacing")) in <lambda>()
89 add(CommonAdapterItemType.SPACE_30.withId("bottomSpacing")) in <lambda>()
/compose/ui/ui-viewbinding/samples/src/androidTest/java/androidx/compose/ui/samples/
DReusableAndroidViewBindingTest.kt42 import androidx.test.espresso.matcher.ViewMatchers.withId in <lambda>()
281 onView(withId(R.id.fragment_layout)).check(matches(withEffectiveVisibility(VISIBLE))) in <lambda>()
292 onView(withId(R.id.fragment_layout)).check(doesNotExist()) in <lambda>()
302 onView(withId(R.id.fragment_layout)).check(matches(withEffectiveVisibility(VISIBLE))) in <lambda>()
313 onView(withId(R.id.fragment_layout)).check(doesNotExist()) in <lambda>()
323 onView(withId(R.id.fragment_layout)).check(matches(withEffectiveVisibility(VISIBLE))) in <lambda>()
/compose/ui/ui-test/src/androidInstrumentedTest/kotlin/androidx/compose/ui/test/
DIsDisplayedTest.kt50 import androidx.test.espresso.matcher.ViewMatchers.withId in <lambda>()
194 return onView(allOf(withParent(withId(100)))) in <lambda>()
223 return onView(allOf(withParent(withId(100)))) in <lambda>()
/compose/integration-tests/macrobenchmark-target/src/main/java/androidx/compose/integration/macrobenchmark/target/complexdifferenttypeslist/common/
DBaseAdapterItemType.kt24 infix fun BaseAdapterItemType.withId(id: Any): AdapterItemWrapper = method