public TestXRadioButton() {
}
public void testSetState()
{
XRadioButton button1 = new XRadioButton();
XRadioButton button2 = new XRadioButton();
button1.setState( false );
button2.setState( true );
assertTrue( button1.getState() != button2.getState());
}