public function testGetCustomerProfileIds()
 {
     // Create new customer profile
     $request = new Request();
     $customerProfile = new Customer();
     $customerProfile->description = "Description of customer";
     $customerProfile->merchantCustomerId = time() . rand(1, 10);
     $customerProfile->email = "*****@*****.**";
     $response = $request->createCustomerProfile($customerProfile);
     $this->assertTrue($response->isOk());
     $customerProfileId = $response->getCustomerProfileId();
     $response = $request->getCustomerProfileIds();
     $this->assertTrue($response->isOk());
     $this->assertTrue(in_array($customerProfileId, $response->getCustomerProfileIds()));
 }