We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c78173 commit 4b38104Copy full SHA for 4b38104
1 file changed
tests/AuthorizeNetCIM_Test.php
@@ -374,6 +374,13 @@ public function testAll()
374
375
public function testGetCustomerProfileIds()
376
{
377
+ // A valid response should be received when a merchant has zero customer profiles...
378
+ // Hence, first testing using specific credentials for a merchant which has zero customer profiles...
379
+ $request = new AuthorizeNetCIM('3qkNY3db6jB','7s8B76QvsPet82HH');
380
+ $response = $request->getCustomerProfileIds();
381
+ $this->assertTrue($response->isOk());
382
+ $this->assertTrue(empty($response->getCustomerProfileIds()));
383
+
384
// Create new customer profile
385
$request = new AuthorizeNetCIM;
386
$customerProfile = new AuthorizeNetCustomer;
0 commit comments