-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathCashFlowAnalyticsApiTest.java
35 lines (27 loc) · 1.27 KB
/
CashFlowAnalyticsApiTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.mastercard.openbanking.client.api;
import client.api.CustomCashFlowAnalyticsApi;
import com.mastercard.openbanking.client.ApiException;
import com.mastercard.openbanking.client.model.BalanceAndCashFlowAnalyticsReportConstraints;
import com.mastercard.openbanking.client.test.BaseTest;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertNotNull;
class CashFlowAnalyticsApiTest extends BaseTest {
private final CustomCashFlowAnalyticsApi api = new CustomCashFlowAnalyticsApi(apiClient);
// @Test
// void generateCashFlowAnalyticsTest() {
// try {
// // Generate the report
// var reportConstraints = new BalanceAndCashFlowAnalyticsReportConstraints();
// var generateResponse = api.generateCashFlowAnalytics(CUSTOMER_ID, reportConstraints, null);
// var reportId = generateResponse.getReportId();
// // Fetch the report as JSON
// var report = api.getObbAnalyticsJsonReport(reportId);
// assertNotNull(report);
// // Fetch the report as PDF
// var pdf = api.getObbAnalyticsPdfReport(reportId);
// assertNotNull(pdf);
// } catch (ApiException e) {
// fail(e);
// }
// }
}