3
3
namespace EasyPost ;
4
4
5
5
use EasyPost \Constant \Constants ;
6
+ use EasyPost \Test \Fixture ;
6
7
use EasyPost \Test \Mocking \MockingUtility ;
7
8
use EasyPost \Test \Mocking \MockRequest ;
8
9
use EasyPost \Test \Mocking \MockRequestMatchRule ;
@@ -80,7 +81,7 @@ public static function setUpBeforeClass(): void
80
81
* @param MockingUtility|null $mockUtility
81
82
* @return EasyPostClient
82
83
*/
83
- public static function getClient (MockingUtility $ mockUtility = null ): EasyPostClient
84
+ public static function getClient (? MockingUtility $ mockUtility = null ): EasyPostClient
84
85
{
85
86
return new EasyPostClient (
86
87
getenv ('EASYPOST_TEST_API_KEY ' ),
@@ -96,7 +97,7 @@ public static function getClient(MockingUtility $mockUtility = null): EasyPostCl
96
97
public function testFundWallet (): void
97
98
{
98
99
try {
99
- self ::$ client ->billing ->fundWallet ('2000 ' , ' primary ' );
100
+ self ::$ client ->billing ->fundWallet ('2000 ' , Fixture:: billing ()[ ' priority ' ], );
100
101
101
102
$ this ->expectNotToPerformAssertions ();
102
103
} catch (\Exception $ exception ) {
@@ -164,7 +165,7 @@ public function testRetrievePaymentMethodSummaryNoId(): void
164
165
public function testDeletePaymentMethod (): void
165
166
{
166
167
try {
167
- self ::$ client ->billing ->deletePaymentMethod (' primary ' );
168
+ self ::$ client ->billing ->deletePaymentMethod (Fixture:: billing ()[ ' priority ' ], );
168
169
169
170
$ this ->expectNotToPerformAssertions ();
170
171
} catch (\Exception $ exception ) {
@@ -183,7 +184,7 @@ public function testGetPaymentMethodPrioritySwitchCase(): void
183
184
{
184
185
// testing "primary"
185
186
try {
186
- self ::$ client ->billing ->deletePaymentMethod (' primary ' );
187
+ self ::$ client ->billing ->deletePaymentMethod (Fixture:: billing ()[ ' priority ' ], );
187
188
188
189
$ this ->expectNotToPerformAssertions ();
189
190
} catch (\Exception $ exception ) {
@@ -233,7 +234,7 @@ public function testGetPaymentMethodByPriorityNoPaymentMethod(): void
233
234
// Deleting a payment method gets the payment method internally, which should execute the
234
235
// code that will trigger an exception.
235
236
try {
236
- $ client ->billing ->deletePaymentMethod (' primary ' );
237
+ $ client ->billing ->deletePaymentMethod (Fixture:: billing ()[ ' priority ' ], );
237
238
238
239
$ this ->fail ('Exception not thrown when we expected one ' );
239
240
} catch (\Exception $ exception ) {
@@ -265,7 +266,7 @@ public function testGetPaymentMethodByPriorityPaymentMethodNoId(): void
265
266
// Deleting a payment method gets the payment method internally, which should execute the
266
267
// code that will trigger an exception.
267
268
try {
268
- $ client ->billing ->deletePaymentMethod (' primary ' );
269
+ $ client ->billing ->deletePaymentMethod (Fixture:: billing ()[ ' priority ' ], );
269
270
270
271
$ this ->fail ('Exception not thrown when we expected one ' );
271
272
} catch (\Exception $ exception ) {
@@ -306,7 +307,7 @@ public function testGetPaymentMethodInfoByObjectType(): void
306
307
// only a delete request to /v2/credit_cards/pm_123 is mocked
307
308
// if the delete function works, it's because it found the correct payment method type
308
309
try {
309
- $ client ->billing ->deletePaymentMethod (' primary ' );
310
+ $ client ->billing ->deletePaymentMethod (Fixture:: billing ()[ ' priority ' ], );
310
311
311
312
$ this ->expectNotToPerformAssertions ();
312
313
} catch (\Exception $ exception ) {
0 commit comments