getMockRequest(), ''); } public function testGetMatchingPaymentProfileId() { $httpResponse = $this->getMockHttpResponse('CIMGetProfileSuccess.txt'); $response = new CIMGetProfileResponse($this->getMockRequest(), $httpResponse->getBody()); $this->assertEquals('26455656', $response->getMatchingPaymentProfileId('1111')); $this->assertEquals('26455709', $response->getMatchingPaymentProfileId('8888')); $this->assertNull($response->getMatchingPaymentProfileId('8889')); } }