Home | History | Annotate | Download | only in widget

Lines Matching defs:radio

38         RadioButton radio = (RadioButton) activity.findViewById(R.id.value_one);
39 assertTrue("The first radio button should be checked", radio.isChecked());
42 assertEquals("The first radio button should be checked", R.id.value_one,
50 RadioButton radio = (RadioButton) activity.findViewById(R.id.value_two);
51 TouchUtils.clickView(this, radio);
55 assertFalse("The first radio button should not be checked", old.isChecked());
56 assertTrue("The second radio button should be checked", radio.isChecked());
59 assertEquals("The second radio button should be checked", R.id.value_two,