public function testRefund()
 {
     $refund = new Refund();
     $response = $refund->refundTheAmt();
     $this->assertEquals("Success", $response->responseEnvelope->ack);
     $this->assertNotNull($response->refundInfoList->refundInfo);
 }