Examples of FinanziamentoTestTASSOFake_SR


Examples of it.pdor.generatorePdA.domain.FinanziamentoTestTASSOFake_SR

  }
 
 
  public void testCalcolaPamStarRegTestTASSO() {
   
    Finanziamento fin = new FinanziamentoTestTASSOFake_SR();
    try {
      fin = generatorePdAService.calcolaPAM(fin);
      loggamiIlPiano(fin);
      // Valori presi da LEGACY facendo ricalcolare il pam
      assertEquals("Totale Montante:",113622.18,MathUtils.round( fin.getTotaliPam().getQuotaMontante(),2))
      assertEquals("Totale Importo Rata:",115422.18,MathUtils.round( fin.getTotaliPam().getImportoRate(),2));
      assertEquals("Totale Quota Capitale:",51000.00,MathUtils.round( fin.getTotaliPam().getQuotaCapitale(),2));
      assertEquals("Totale Quota Interessi:",62622.18,MathUtils.round( fin.getTotaliPam().getQuotaInteressi(),2));
      assertEquals("Totale Quota Erogato:",49952.50,MathUtils.round( fin.getImportoErogato() ,2));
      assertEquals("Ultima rata:", 336.26,MathUtils.round( fin.getPam().get(fin.getPam().size()-1).getImpRata(),2));
      assertEquals("Quota Capitale ultima rata:",329.95,MathUtils.round( fin.getPam().get(fin.getPam().size()-1).getQuotaCapitale(),2));
      assertEquals("Quota Interessi ultima rata:",1.31,MathUtils.round( fin.getPam().get(fin.getPam().size()-1).getQuotaInteressi(),2));
      assertEquals("Quota Commissioni ultima rata:",0.00,MathUtils.round( fin.getPam().get(fin.getPam().size()-1).getQuotaCommissioni(),2));
      assertEquals("Arrotondamento:",0.00,MathUtils.round( fin.getImportoArrotondamento() ,2));
      assertEquals("Tasso Periodale:",0.0055083,MathUtils.round( fin.getTassoPeriodale() ,7));
     
    } catch (Exception e) {
      fail("Eccezione " + e.getMessage());
    }
  }
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.