WidgetInfo label = panel.getChildrenWidgets().get(0);
assertNull(LayoutInfo.getLayoutData(label));
}
// no SimpleContainer
{
List<SimpleContainer> containers = new SimpleContainerFactory(layout, true).get();
assertThat(containers).isEmpty();
}
{
List<SimpleContainer> containers = new SimpleContainerFactory(layout, false).get();
assertThat(containers).isEmpty();
}
// has FlowContainer for tree
{
List<FlowContainer> containers = new FlowContainerFactory(layout, false).get();