@Test
public void test1() throws RenderException
{
// compose
Form f = new Form()
.add(new StringInput("name"))
.add(new Button("helloWorld").setLabel("Say hello").setIcon(Icon.SEARCH));
// render
BaseTheme r = new BootstrapTheme();
String result = r.render(f);