Home
last modified time | relevance | path

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

/cts/tests/tests/widget/src/android/widget/cts/
DAbsSeekBarTest.java343 Drawable mockTickMark = spy(new ColorDrawable(Color.BLUE)); in testTickMarkTint() local
345 inflatedView.setTickMark(mockTickMark); in testTickMarkTint()
346 verify(mockTickMark, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testTickMarkTint()
348 reset(mockTickMark); in testTickMarkTint()
350 verify(mockTickMark, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testTickMarkTint()
356 reset(mockTickMark); in testTickMarkTint()
358 inflatedView.setTickMark(mockTickMark); in testTickMarkTint()
359 verify(mockTickMark, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testTickMarkTint()