/**
  * @test
  */
 public function testPaymentDetails()
 {
     $paymentDetails = new PaymentDetails();
     $response = $paymentDetails->details();
     $this->assertEquals("Success", $response->responseEnvelope->ack);
     $this->assertNotNull($response->status);
 }