public function testInvalidAmount()
 {
     $this->setMockHttpResponse('RestPurchaseInvalidAmount.txt');
     $response = $this->request->send();
     $this->assertFalse($response->isSuccessful());
     $this->assertEquals('Invalid amount', $response->getMessage());
     $this->assertEquals(1001, $response->getCode());
 }