Searched refs:falseContext (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/ |
D | TileLifecycleManagerTest.java | 466 Context falseContext = mock(Context.class); in testFalseBindCallsUnbind() local 467 when(falseContext.bindServiceAsUser(any(), any(), anyInt(), any())).thenReturn(false); in testFalseBindCallsUnbind() 468 TileLifecycleManager manager = new TileLifecycleManager(mHandler, falseContext, in testFalseBindCallsUnbind() 482 verify(falseContext).bindServiceAsUser(any(), captor.capture(), anyInt(), any()); in testFalseBindCallsUnbind() 484 verify(falseContext).unbindService(captor.getValue()); in testFalseBindCallsUnbind() 490 Context falseContext = mock(Context.class); in testVersionUDoesNotBindsAllowBackgroundActivity() local 491 TileLifecycleManager manager = new TileLifecycleManager(mHandler, falseContext, in testVersionUDoesNotBindsAllowBackgroundActivity() 507 verify(falseContext).bindServiceAsUser(any(), any(), eq(flags), any()); in testVersionUDoesNotBindsAllowBackgroundActivity() 513 Context falseContext = mock(Context.class); in testVersionLessThanUBindsAllowBackgroundActivity() local 514 TileLifecycleManager manager = new TileLifecycleManager(mHandler, falseContext, in testVersionLessThanUBindsAllowBackgroundActivity() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/controller/ |
D | ControlsProviderLifecycleManagerTest.kt | 246 val falseContext = mock<Context>() in testFalseBindCallsUnbind() constant 247 `when`(falseContext.bindServiceAsUser(any(), any(), anyInt(), any())).thenReturn(false) in testFalseBindCallsUnbind() 249 falseContext, in testFalseBindCallsUnbind() 262 verify(falseContext).bindServiceAsUser(any(), captor.capture(), anyInt(), any()) in testFalseBindCallsUnbind() 263 verify(falseContext).unbindService(captor.value) in testFalseBindCallsUnbind()
|