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.java1494 final Spannable.Factory mockSpannableFactory = spy(new Spannable.Factory()); in testSetSpannableFactory() local
1495 doCallRealMethod().when(mockSpannableFactory).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1496 mTextView.setSpannableFactory(mockSpannableFactory); in testSetSpannableFactory()
1499 verify(mockSpannableFactory, never()).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1501 reset(mockSpannableFactory); in testSetSpannableFactory()
1503 verify(mockSpannableFactory, never()).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1505 reset(mockSpannableFactory); in testSetSpannableFactory()
1507 verify(mockSpannableFactory, never()).newSpannable(any(CharSequence.class)); in testSetSpannableFactory()
1509 reset(mockSpannableFactory); in testSetSpannableFactory()
1511 verify(mockSpannableFactory, times(1)).newSpannable(text); in testSetSpannableFactory()
[all …]