" }",
"}"));
waitForAutoBuild();
// parse
useStrictEvaluationMode(false);
PanelInfo panel =
parseJavaInfo(
"public class Test extends MyPanel {",
" public Test(MyConstants constants) {",
" super(constants);",
" }",
"}");
panel.refresh();
assertEquals("My title", (String) ReflectionUtils.invokeMethod(panel.getObject(), "getTitle()"));
}