Package br.com.caelum.stella.gateway.visa

Examples of br.com.caelum.stella.gateway.visa.VISACapturaReturn


        one(request).getParameter("tid");will(returnValue("12345678"));
        one(request).getParameter("cap");will(returnValue("200"));
      }
    });
    VISAVerificacaoRetornoIntegracaoViaHttp retornoIntegracaoViaHttp = new VISAVerificacaoRetornoIntegracaoViaHttp(request,VISAHttpReturnBuilder.CAPTURA_RETORNO_BUILDER);
    VISACapturaReturn capturaReturn = (VISACapturaReturn)retornoIntegracaoViaHttp.handle();
    Assert.assertEquals(new BigDecimal(2).setScale(2),capturaReturn.getCap());
   
 
View Full Code Here

TOP

Related Classes of br.com.caelum.stella.gateway.visa.VISACapturaReturn

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.