Package br.com.caelum.stella.gateway.bb

Examples of br.com.caelum.stella.gateway.bb.BBVerificaFormularioInforma


        one(request).getParameter("valor");will(returnValue("1000"));
        one(request).getParameter("idConv");will(returnValue("123456"));
        one(request).getParameter("refTran");will(returnValue("123456789012345"));
      }
    });
    BBFormularioInformaReturn formularioInformaReturn = new BBVerificaFormularioInforma(request).handle();
    Assert.assertEquals(BigDecimal.TEN.setScale(2),formularioInformaReturn.getValor());
    Assert.assertEquals(123456,formularioInformaReturn.getIdConv());
    Assert.assertEquals("123456789012345",formularioInformaReturn.getRefTran());
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.stella.gateway.bb.BBVerificaFormularioInforma

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.