| @@ 77-84 (lines=8) @@ | ||
| 74 | /** |
|
| 75 | * @depends testUpdateSubscriptionPlan |
|
| 76 | */ |
|
| 77 | public function testDisableSubscriptionPlan() |
|
| 78 | { |
|
| 79 | static::$xsollaClient->DisableSubscriptionPlan([ |
|
| 80 | 'project_id' => static::$projectId, |
|
| 81 | 'plan_id' => static::$planId, |
|
| 82 | ]); |
|
| 83 | static::assertTrue(true); |
|
| 84 | } |
|
| 85 | ||
| 86 | /** |
|
| 87 | * @depends testDisableSubscriptionPlan |
|
| @@ 89-96 (lines=8) @@ | ||
| 86 | /** |
|
| 87 | * @depends testDisableSubscriptionPlan |
|
| 88 | */ |
|
| 89 | public function testEnableSubscriptionPlan() |
|
| 90 | { |
|
| 91 | static::$xsollaClient->EnableSubscriptionPlan([ |
|
| 92 | 'project_id' => static::$projectId, |
|
| 93 | 'plan_id' => static::$planId, |
|
| 94 | ]); |
|
| 95 | static::assertTrue(true); |
|
| 96 | } |
|
| 97 | ||
| 98 | /** |
|
| 99 | * @depends testEnableSubscriptionPlan |
|
| @@ 101-108 (lines=8) @@ | ||
| 98 | /** |
|
| 99 | * @depends testEnableSubscriptionPlan |
|
| 100 | */ |
|
| 101 | public function testDeleteSubscriptionPlan() |
|
| 102 | { |
|
| 103 | static::$xsollaClient->DeleteSubscriptionPlan([ |
|
| 104 | 'project_id' => static::$projectId, |
|
| 105 | 'plan_id' => static::$planId, |
|
| 106 | ]); |
|
| 107 | static::assertTrue(true); |
|
| 108 | } |
|
| 109 | ||
| 110 | /** |
|
| 111 | * @depends testDeleteSubscriptionPlan |
|