Home
last modified time | relevance | path

Searched refs:copyCollectedEvents (Results 1 – 6 of 6) sorted by relevance

/lifecycle/integration-tests/testapp/src/main/java/androidx/lifecycle/testapp/
DCollectingLifecycleOwner.java36 List<Pair<TestEvent, Lifecycle.Event>> copyCollectedEvents(); in copyCollectedEvents() method
DFrameworkLifecycleRegistryActivity.java92 public List<Pair<TestEvent, Lifecycle.Event>> copyCollectedEvents() { in copyCollectedEvents() method in FrameworkLifecycleRegistryActivity
DCollectingSupportActivity.java98 public List<Pair<TestEvent, Event>> copyCollectedEvents() { in copyCollectedEvents() method in CollectingSupportActivity
DCollectingSupportFragment.java103 public List<Pair<TestEvent, Lifecycle.Event>> copyCollectedEvents() { in copyCollectedEvents() method in CollectingSupportFragment
/lifecycle/integration-tests/testapp/src/androidTest/java/androidx/lifecycle/
DPartiallyCoveredActivityTest.java155 assertThat(owner.copyCollectedEvents()).isEqualTo(EXPECTED[0]); in runTest()
160 assertThat(owner.copyCollectedEvents()).isEqualTo(flatMap(EXPECTED[0], EXPECTED[1])); in runTest()
168 assertThat(owner.copyCollectedEvents()).isEqualTo(expected); in runTest()
DActivityFullLifecycleTest.java73 List<Pair<TestEvent, Event>> results = owner[0].copyCollectedEvents(); in testFullLifecycle()