use of sic.builder.ProductoBuilder in project sic by belluccifranco.
the class FacturaServiceImplTest method shouldCalcularPrecioUnitarioWhenEsUnaVentaConFacturaB.
@Test
public void shouldCalcularPrecioUnitarioWhenEsUnaVentaConFacturaB() {
Producto producto = new ProductoBuilder().withPrecioCosto(100.00).withGanancia_neto(100).withIva_neto(42).withPrecioVentaPublico(200).withPrecioLista(242).withImpuestoInterno_neto(0.0).withIva_porcentaje(21).build();
double resultadoEsperado = 242;
double resultadoObtenido = facturaService.calcularPrecioUnitario(Movimiento.VENTA, TipoDeComprobante.FACTURA_B, producto);
assertEquals(resultadoEsperado, resultadoObtenido, 0);
}
Aggregations