Home
last modified time | relevance | path

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

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DTextViewTest.java143 assertThat(view.getTransformationMethod(), is(CoreMatchers.<Object>nullValue())); in shouldNotHaveTransformationMethodByDefault()
150 … assertEquals(view.getTransformationMethod().getClass(), ShadowPasswordTransformationMethod.class); in shouldAllowSettingATransformationMethod()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTextViewTest.java173 assertThat(textView.getTransformationMethod()).isNull(); in shouldNotHaveTransformationMethodByDefault()
179 assertThat(textView.getTransformationMethod()).isInstanceOf(PasswordTransformationMethod.class); in shouldAllowSettingATransformationMethod()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java464 public TransformationMethod getTransformationMethod() { in getTransformationMethod() method in ShadowTextView