Home
last modified time | relevance | path

Searched refs:otherCallback (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/privacy/
DPrivacyItemControllerTest.kt186 val otherCallback = mock(PrivacyItemController.Callback::class.java) in testAddMultipleCallbacks() constant
191 privacyItemController.addCallback(otherCallback) in testAddMultipleCallbacks()
193 verify(otherCallback).onPrivacyItemsChanged(anyList()) in testAddMultipleCallbacks()
202 val otherCallback = mock(PrivacyItemController.Callback::class.java) in testMultipleCallbacksAreUpdated() constant
204 privacyItemController.addCallback(otherCallback) in testMultipleCallbacksAreUpdated()
207 reset(otherCallback) in testMultipleCallbacksAreUpdated()
213 verify(otherCallback).onPrivacyItemsChanged(anyList()) in testMultipleCallbacksAreUpdated()
219 val otherCallback = mock(PrivacyItemController.Callback::class.java) in testRemoveCallback() constant
221 privacyItemController.addCallback(otherCallback) in testRemoveCallback()
225 reset(otherCallback) in testRemoveCallback()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/connectivity/
DAccessPointControllerImplTest.kt61 private lateinit var otherCallback: AccessPointController.AccessPointCallback variable in com.android.systemui.statusbar.connectivity.AccessPointControllerImplTest
114 controller.addAccessPointCallback(otherCallback) in testLifecycleStillStartedAfterRemovingSecondCallback()