public function testGetCustomerProfile()
 {
     // 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->getCustomerProfile($customerProfileId);
     $this->assertTrue($response->isOk());
 }