Map<Object, Object> choices = new LinkedHashMap<Object, Object>();
choices.put("J", "John");
choices.put("P", "Paul");
choices.put("G", "George");
choices.put("R", "Ringo");
Widget w = new RadioHorizontalWidget(choices);
String out = w.render("beatle", new String[] {"J"}, null);
String correct = "<label><input name=\"beatle\" type=\"radio\" value=\"J\" checked=\"checked\" /> John</label>" +
"<label><input name=\"beatle\" type=\"radio\" value=\"P\" /> Paul</label>" +
"<label><input name=\"beatle\" type=\"radio\" value=\"G\" /> George</label>" +
"<label><input name=\"beatle\" type=\"radio\" value=\"R\" /> Ringo</label>";