getMockRequest(), ''); } public function testCreateCardSuccess() { $httpResponse = $this->getMockHttpResponse('CIMCreateCardSuccess.txt'); $response = new CIMCreateCardResponse($this->getMockRequest(), $httpResponse->getBody()); $this->assertTrue($response->isSuccessful()); $this->assertEquals('I00001', $response->getReasonCode()); $this->assertEquals("1", $response->getResultCode()); $this->assertEquals("Successful.", $response->getMessage()); $this->assertEquals('28972084', $response->getCustomerProfileId()); $this->assertEquals('26317840', $response->getCustomerPaymentProfileId()); } public function testCreateCardFailure() { $httpResponse = $this->getMockHttpResponse('CIMCreateCardFailure.txt'); $response = new CIMCreateCardResponse($this->getMockRequest(), $httpResponse->getBody()); $this->assertFalse($response->isSuccessful()); $this->assertEquals('E00041', $response->getReasonCode()); $this->assertEquals("3", $response->getResultCode()); $this->assertEquals("One or more fields in the profile must contain a value.", $response->getMessage()); $this->assertNull($response->getCustomerProfileId()); $this->assertNull($response->getCustomerPaymentProfileId()); $this->assertNull($response->getCardReference()); } }