//
// Tests
//
////////////////////////////////////////////////////////////////////////////
public void test_property() throws Exception {
FormPanelInfo panel =
parseJavaInfo(
"// filler filler filler",
"public class Test extends FormPanel {",
" public Test() {",
" }",
"}");
panel.refresh();
BindingsProperty property = (BindingsProperty) panel.getPropertyByTitle("bindings");
assertNotNull(property);
}