Searched refs:mockDrawable (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/ |
D | SlashImageViewTest.java | 48 Drawable mockDrawable = mock(Drawable.class); in testSetNonNullSlashStateCreatesSlashDrawable() local 52 mSlashView.setState(mockState, mockDrawable); in testSetNonNullSlashStateCreatesSlashDrawable() 60 Drawable mockDrawable = mock(Drawable.class); in testSetNullSlashStateRemovesSlashDrawable() local 62 mSlashView.setState(mockState, mockDrawable); in testSetNullSlashStateRemovesSlashDrawable() 66 mSlashView.setState(null, mockDrawable); in testSetNullSlashStateRemovesSlashDrawable() 74 Drawable mockDrawable = mock(Drawable.class); in testSetNullDrawableRemovesSlashDrawable() local 77 mSlashView.setImageDrawable(mockDrawable); in testSetNullDrawableRemovesSlashDrawable() 78 mSlashView.setState(mockState, mockDrawable); in testSetNullDrawableRemovesSlashDrawable() 87 Drawable mockDrawable = mock(Drawable.class); in testSetImageDrawableUsesDrawableLevel() local 88 when(mockDrawable.getLevel()).thenReturn(2); in testSetImageDrawableUsesDrawableLevel() [all …]
|
D | AlphaControlledSignalTileViewTest.java | 62 Drawable mockDrawable = mock(Drawable.class); in testSlashDrawable_doesNotSetTintList() local 63 AlphaControlledSlashDrawable drawable = new AlphaControlledSlashDrawable(mockDrawable); in testSlashDrawable_doesNotSetTintList() 66 verify(mockDrawable, never()).setTintList(any()); in testSlashDrawable_doesNotSetTintList() 71 Drawable mockDrawable = mock(Drawable.class); in testSlashDrawable_setsFinalTintList() local 72 AlphaControlledSlashDrawable drawable = new AlphaControlledSlashDrawable(mockDrawable); in testSlashDrawable_setsFinalTintList() 75 verify(mockDrawable, atLeastOnce()).setTintList(list); in testSlashDrawable_setsFinalTintList()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | ServiceStateTrackerTest.java | 1588 Drawable mockDrawable = mock(Drawable.class); in testSetPsNotifications() local 1590 when(mockResources.getDrawable(anyInt(), any())).thenReturn(mockDrawable); in testSetPsNotifications() 1620 Drawable mockDrawable = mock(Drawable.class); in testSetCsNotifications() local 1622 when(mockResources.getDrawable(anyInt(), any())).thenReturn(mockDrawable); in testSetCsNotifications() 1653 Drawable mockDrawable = mock(Drawable.class); in testSetCsNormalNotifications() local 1655 when(mockResources.getDrawable(anyInt(), any())).thenReturn(mockDrawable); in testSetCsNormalNotifications() 1685 Drawable mockDrawable = mock(Drawable.class); in testSetCsEmergencyNotifications() local 1687 when(mockResources.getDrawable(anyInt(), any())).thenReturn(mockDrawable); in testSetCsEmergencyNotifications() 1719 Drawable mockDrawable = mock(Drawable.class); in testSetNotificationsForGroupedSubs() local 1721 when(mockResources.getDrawable(anyInt(), any())).thenReturn(mockDrawable); in testSetNotificationsForGroupedSubs()
|