Home
last modified time | relevance | path

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

/cts/tests/tests/widget/src/android/widget/cts/
DAbsSeekBarTest.java314 Drawable mockThumb = spy(new ColorDrawable(Color.BLUE)); in testThumbTint() local
316 inflatedView.setThumb(mockThumb); in testThumbTint()
317 verify(mockThumb, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testThumbTint()
319 reset(mockThumb); in testThumbTint()
321 verify(mockThumb, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTint()
327 reset(mockThumb); in testThumbTint()
329 inflatedView.setThumb(mockThumb); in testThumbTint()
330 verify(mockThumb, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTint()