Examples of Penale


Examples of it.pdor.gestionePratica.domain.Penale

  public void testGetPenaleEstinzione(){
    long numeroMutuo = 173847;
    String dataDiCalcolo = "24/08/2009";
    SimpleDateFormat f = new SimpleDateFormat("dd/MM/yyyy");
    try{
      Penale penale = gestionePraticaFacade.getPenaleEstinzione(numeroMutuo, f.parse(dataDiCalcolo));
      assertEquals("Penale estinzione : " , 0.85d, penale.getTassoEstinzioneAnticipata());
    }catch (Exception e) {
      e.printStackTrace();
   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.