Home | History | Annotate | Download | only in detail

Lines Matching defs:textView

26 import android.widget.TextView;
74 TextView textView = (TextView) parent.findViewById(textViewId);
75 assertNotNull(textView);
76 assertEquals(View.VISIBLE, textView.getVisibility());
77 assertEquals(expectedText, textView.getText().toString());
82 TextView textView = (TextView) parent.findViewById(textViewId);
83 assertNotNull(textView);
84 assertEquals(View.VISIBLE, textView.getVisibility());
85 assertSpannableEquals(Html.fromHtml(expectedHtml), textView.getText());