use of org.odlabs.wiquery.ui.DivTestPanel in project wiquery by WiQuery.
the class PositionBehaviorTestCase method setUp.
@Override
@Before
public void setUp() {
super.setUp();
positionBehavior = new PositionBehavior();
Panel panel = new DivTestPanel("panelId");
WebMarkupContainer component = new WebMarkupContainer("anId");
component.setMarkupId("anId");
component.add(positionBehavior);
panel.add(component);
tester.startComponentInPage(panel);
}
Aggregations