It surprised me when I could not boot strap a simple java-based smartgwt ui in a GWTTestCase. Is this a known issue?
I can provide more detail if you like, but the following simple cases all fail with a javascript exception:
I can provide more detail if you like, but the following simple cases all fail with a javascript exception:
Code:
public class DashboardUiShould extends GWTTestCase { public void testUi() { HLayout hLayout = new HLayout(); hLayout.draw(); //... public void testUi() { HLayout hLayout = new HLayout(); RootPanel.get().add(hLayout); //... public void testUi() { HLayout hLayout = new HLayout(); RootLayoutPanel.get().add(hLayout); //...
Comment