tests/Integration/API/SubscriptionsTest.php 1 location
|
@@ 52-59 (lines=8) @@
|
49 |
|
/** |
50 |
|
* @depends testCreateSubscriptionPlan |
51 |
|
*/ |
52 |
|
public function testListSubscriptionPlans() |
53 |
|
{ |
54 |
|
$response = static::$xsollaClient->ListSubscriptionPlans(array( |
55 |
|
'project_id' => static::$projectId, |
56 |
|
'limit' => 100, |
57 |
|
)); |
58 |
|
static::assertInternalType('array', $response); |
59 |
|
} |
60 |
|
|
61 |
|
/** |
62 |
|
* @depends testListSubscriptionPlans |
tests/Integration/API/WalletTest.php 1 location
|
@@ 38-46 (lines=9) @@
|
35 |
|
)); |
36 |
|
} |
37 |
|
|
38 |
|
public function testListWalletUsers() |
39 |
|
{ |
40 |
|
$response = static::$xsollaClient->ListWalletUsers(array( |
41 |
|
'project_id' => static::$projectId, |
42 |
|
'limit' => 1, |
43 |
|
'offset' => 0, |
44 |
|
)); |
45 |
|
static::assertInternalType('array', $response); |
46 |
|
} |
47 |
|
|
48 |
|
public function testListWalletUsersWithParams() |
49 |
|
{ |