< Summary

Information
Class: FAU.Logica.DTOs.AcumuladoresDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/AcumuladoresDto.cs
Line coverage
100%
Covered lines: 14
Uncovered lines: 0
Coverable lines: 14
Total lines: 22
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_HaberesNormales()100%11100%
get_HaberesAnormales()100%11100%
get_BeneficiosSociales()100%11100%
get_DescuentosLegales()100%11100%
get_DescuentosPersonales()100%11100%
get_HabNorGrav()100%11100%
get_HabsAnGrav()100%11100%
get_HabsNoGrav()100%11100%
get_BenSocGrav()100%11100%
get_BenSocNoGrav()100%11100%
get_DtoLegGrav()100%11100%
get_DtoLegNoGrav()100%11100%
get_DtoPerGrav()100%11100%
get_Liquido()100%11100%

File(s)

/home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/AcumuladoresDto.cs

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class AcumuladoresDto
 4{
 5    // Bases
 26    public decimal HaberesNormales { get; set; }
 17    public decimal HaberesAnormales { get; set; }
 18    public decimal BeneficiosSociales { get; set; }
 19    public decimal DescuentosLegales { get; set; }
 110    public decimal DescuentosPersonales { get; set; }
 11
 12    // Clasificaciones SIIF
 113    public decimal HabNorGrav { get; set; }
 114    public decimal HabsAnGrav { get; set; }
 115    public decimal HabsNoGrav { get; set; }
 116    public decimal BenSocGrav { get; set; }
 117    public decimal BenSocNoGrav { get; set; }
 118    public decimal DtoLegGrav { get; set; }
 119    public decimal DtoLegNoGrav { get; set; }
 120    public decimal DtoPerGrav { get; set; }
 221    public decimal Liquido { get; set; }
 22}