use of eu.ggnet.dwoss.report.ui.cap.support.RevenueReportSelectionView in project dwoss by gg-net.
the class RevenueReportSelectionViewTryout method main.
public static void main(String[] args) {
Mandators mandatorSupporterMock = mock(Mandators.class);
when(mandatorSupporterMock.loadContractors()).thenReturn(new Contractors(EnumSet.of(TradeName.FUJITSU), EnumSet.of(TradeName.FUJITSU)));
// Not yet implemented
Dl.remote().add(Mandators.class, mandatorSupporterMock);
Ui.exec(() -> {
UiCore.startSwing(() -> new JLabel("Main Applikation"));
Ui.build().fx().eval(() -> new RevenueReportSelectionView()).opt().ifPresent(System.out::println);
});
}
Aggregations