/**
  * @test
  * /// Visa verify should return response code '85'.
  */
 public function testVisaVerifyShouldReturnOk()
 {
     $testConfig = new TestServicesConfig();
     $chargeSvc = new HpsCreditService($testConfig->validMultiUseConfig());
     $response = $chargeSvc->Verify(TestCreditCard::validVisaCreditCard(), TestCardHolder::ValidCardHolder());
     $this->assertEquals("85", $response->responseCode);
 }