Home
last modified time | relevance | path

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

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DTextViewTest.java162 MockTextWatcher mockTextWatcher = new MockTextWatcher(); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithTextResourceId_ShouldNotifyTextWatcher() local
163 textView.addTextChangedListener(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithTextResourceId_ShouldNotifyTextWatcher()
167 assertEachTextWatcherEventWasInvoked(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithTextResourceId_ShouldNotifyTextWatcher()
172 MockTextWatcher mockTextWatcher = new MockTextWatcher(); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithCharSequence_ShouldNotifyTextWatcher() local
173 textView.addTextChangedListener(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithCharSequence_ShouldNotifyTextWatcher()
177 assertEachTextWatcherEventWasInvoked(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithCharSequence_ShouldNotifyTextWatcher()
182 MockTextWatcher mockTextWatcher = new MockTextWatcher(); in givenATextViewWithATextWatcherAdded_WhenSettingNullText_ShouldNotifyTextWatcher() local
183 textView.addTextChangedListener(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingNullText_ShouldNotifyTextWatcher()
187 assertEachTextWatcherEventWasInvoked(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingNullText_ShouldNotifyTextWatcher()
207 TextWatcher mockTextWatcher = mock(TextWatcher.class); in whenSettingText_ShouldFireBeforeTextChangedWithCorrectArguments() local
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTextViewTest.java191 MockTextWatcher mockTextWatcher = new MockTextWatcher(); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithTextResourceId_ShouldNotifyTextWatcher() local
192 textView.addTextChangedListener(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithTextResourceId_ShouldNotifyTextWatcher()
196 assertEachTextWatcherEventWasInvoked(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithTextResourceId_ShouldNotifyTextWatcher()
201 MockTextWatcher mockTextWatcher = new MockTextWatcher(); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithCharSequence_ShouldNotifyTextWatcher() local
202 textView.addTextChangedListener(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithCharSequence_ShouldNotifyTextWatcher()
206 assertEachTextWatcherEventWasInvoked(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingTextWithCharSequence_ShouldNotifyTextWatcher()
211 MockTextWatcher mockTextWatcher = new MockTextWatcher(); in givenATextViewWithATextWatcherAdded_WhenSettingNullText_ShouldNotifyTextWatcher() local
212 textView.addTextChangedListener(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingNullText_ShouldNotifyTextWatcher()
216 assertEachTextWatcherEventWasInvoked(mockTextWatcher); in givenATextViewWithATextWatcherAdded_WhenSettingNullText_ShouldNotifyTextWatcher()
236 TextWatcher mockTextWatcher = mock(TextWatcher.class); in whenSettingText_ShouldFireBeforeTextChangedWithCorrectArguments() local
[all …]