-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathTransferApiTest.java
63 lines (54 loc) · 2.05 KB
/
TransferApiTest.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Open Banking
* OpenAPI specification for Finicity APIs. Open Banking solutions in the US are provided by Finicity, a Mastercard company.
*
* The version of the OpenAPI document: 1.17.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.mastercard.openbanking.client.api;
import com.mastercard.openbanking.client.ApiException;
import com.mastercard.openbanking.client.model.DepositSwitchDetails;
import com.mastercard.openbanking.client.model.DepositSwitchesSummary;
import com.mastercard.openbanking.client.test.ModelFactory;
import com.mastercard.openbanking.client.test.BaseTest;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import static org.junit.jupiter.api.Assertions.*;
/**
* API tests for TransferApi
*/
@Disabled
class TransferApiTest extends BaseTest{
private final TransferApi api = new TransferApi();
/**
* Get Deposit Switches by Customer ID
*
* Retrieve summary of deposit switches performed by given customer ID. _Supported regions_: 
*
* @throws ApiException if the Api call fails
*/
@Test
void getAllDepositSwitchesTest() throws ApiException {
String customerId = CUSTOMER_ID;
DepositSwitchesSummary summary = api.getAllDepositSwitches(customerId);
assertNotNull(summary.getSwitches());
}
/**
* Get Deposit Switch by ID
*
* Retrieve deposit switch details by switch ID. _Supported regions_: 
*
* @throws ApiException if the Api call fails
*/
@Test
void getDepositSwitchDetailsTest() throws ApiException {
String customerId = CUSTOMER_ID;
String switchId = ModelFactory.randomStr();
DepositSwitchDetails switchDetails = api.getDepositSwitchDetails(customerId, switchId);
assertNotNull(switchDetails.getSwitchId());
}
}