Hi,
I'm always getting NullPointerException when trying to access the lists (getClosedOrders(), getEvents(), getOpenOrders(), getPerfStats()) from an ITesterReportData source.
ITesterReportData reportData = itesterclient.getReportData(processId);
System.out.println(reportData.getClosedOrders()); // 'null'
System.out.println(reportData.getClosedOrders().isEmpty()); // reports exception
However, getting single values like (getFinishDeposit, getStrategyName, etc.) works fine.
System.out.println(reportData.getInitialDeposit()); // '10000.0'
Could you help me out what I'm missing?