tests/Integration/API/PaymentAccountsTest.php 1 location
|
@@ 20-27 (lines=8) @@
|
17 |
|
} |
18 |
|
} |
19 |
|
|
20 |
|
public function testListPaymentAccounts() |
21 |
|
{ |
22 |
|
$response = $this->xsollaClient->ListPaymentAccounts(array( |
23 |
|
'project_id' => $this->projectId, |
24 |
|
'user_id' => static::$userId, |
25 |
|
)); |
26 |
|
static::assertInternalType('array', $response); |
27 |
|
} |
28 |
|
|
29 |
|
public function testChargePaymentAccount() |
30 |
|
{ |
tests/Integration/API/WalletTest.php 1 location
|
@@ 31-38 (lines=8) @@
|
28 |
|
/** |
29 |
|
* @depends testCreateWalletUser |
30 |
|
*/ |
31 |
|
public function testGetWalletUser() |
32 |
|
{ |
33 |
|
$response = $this->xsollaClient->GetWalletUser(array( |
34 |
|
'project_id' => $this->projectId, |
35 |
|
'user_id' => static::$userId, |
36 |
|
)); |
37 |
|
static::assertInternalType('array', $response); |
38 |
|
} |
39 |
|
|
40 |
|
/** |
41 |
|
* @depends testGetWalletUser |