Search in sources :

Example 21 with WRadioButtonSelect

use of com.github.bordertech.wcomponents.WRadioButtonSelect in project wcomponents by BorderTech.

the class WRadioButtonSelectRenderer_Test method testDoPaint.

@Test
public void testDoPaint() throws IOException, SAXException, XpathException {
    WRadioButtonSelect buttonGroup = new WRadioButtonSelect(new String[] { "a", "b", "c" });
    assertSchemaMatch(buttonGroup);
    assertXpathEvaluatesTo("3", "count(//ui:radiobuttonselect/ui:option)", buttonGroup);
    // Check selected
    assertXpathNotExists("//ui:radiobuttonselect/ui:option[@selected='true']", buttonGroup);
    buttonGroup.setSelected("b");
    assertSchemaMatch(buttonGroup);
    assertXpathEvaluatesTo("1", "count(//ui:radiobuttonselect/ui:option[@selected='true'])", buttonGroup);
    assertXpathEvaluatesTo("b", "//ui:radiobuttonselect/ui:option[@selected='true']", buttonGroup);
}
Also used : WRadioButtonSelect(com.github.bordertech.wcomponents.WRadioButtonSelect) Test(org.junit.Test)

Aggregations

WRadioButtonSelect (com.github.bordertech.wcomponents.WRadioButtonSelect)21 WHeading (com.github.bordertech.wcomponents.WHeading)10 WLabel (com.github.bordertech.wcomponents.WLabel)8 ExplanatoryText (com.github.bordertech.wcomponents.examples.common.ExplanatoryText)8 Test (org.junit.Test)8 WFieldLayout (com.github.bordertech.wcomponents.WFieldLayout)7 WTextField (com.github.bordertech.wcomponents.WTextField)5 Action (com.github.bordertech.wcomponents.Action)4 ActionEvent (com.github.bordertech.wcomponents.ActionEvent)4 ValidatingAction (com.github.bordertech.wcomponents.validation.ValidatingAction)4 WAjaxControl (com.github.bordertech.wcomponents.WAjaxControl)3 WButton (com.github.bordertech.wcomponents.WButton)3 WPanel (com.github.bordertech.wcomponents.WPanel)3 OptionGroup (com.github.bordertech.wcomponents.OptionGroup)2 WCheckBox (com.github.bordertech.wcomponents.WCheckBox)2 SystemException (com.github.bordertech.wcomponents.util.SystemException)2 RadioButtonGroup (com.github.bordertech.wcomponents.RadioButtonGroup)1 WCheckBoxSelect (com.github.bordertech.wcomponents.WCheckBoxSelect)1 WContainer (com.github.bordertech.wcomponents.WContainer)1 WDateField (com.github.bordertech.wcomponents.WDateField)1