use of sic.builder.RenglonNotaCreditoBuilder in project sic by belluccifranco.
the class NotaServiceImplTest method shloudCalcularTotalNotaCredito.
@Test
public void shloudCalcularTotalNotaCredito() {
RenglonNotaCredito renglon1 = new RenglonNotaCreditoBuilder().build();
List<RenglonNotaCredito> renglones = new ArrayList<>();
renglones.add(renglon1);
assertEquals(172.062, notaServiceImpl.calcularTotalNota(renglones), 0);
}
Aggregations