Home
last modified time | relevance | path

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

/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java1280 final Spannable.Factory mockSpannableFactory = spy(new Spannable.Factory()); in testSetSpannableFactory() local
1281 doCallRealMethod().when(mockSpannableFactory).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1282 mTextView.setSpannableFactory(mockSpannableFactory); in testSetSpannableFactory()
1285 verify(mockSpannableFactory, never()).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1287 reset(mockSpannableFactory); in testSetSpannableFactory()
1289 verify(mockSpannableFactory, never()).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1291 reset(mockSpannableFactory); in testSetSpannableFactory()
1293 verify(mockSpannableFactory, never()).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1295 reset(mockSpannableFactory); in testSetSpannableFactory()
1297 verify(mockSpannableFactory, times(1)).newSpannable(text); in testSetSpannableFactory()
[all …]