public function test039ChargeGsb()
 {
     $cardHolder = new HpsCardHolder();
     $cardHolder->address = new HpsAddress();
     $cardHolder->address->address = '6860';
     $cardHolder->address->zip = '75024';
     $directMarketData = new HpsDirectMarketData('123456');
     $response = $this->service->charge(2.05)->withCard(TestCreditCard::validGsbCardEcommerce())->withCardHolder($cardHolder)->withDirectMarketData($directMarketData)->execute();
     $this->assertEquals(true, $response != null);
     $this->assertEquals('00', $response->responseCode);
     self::$transactionId39 = $response->transactionId;
 }