< Summary

Information
Class: FAU.Logica.DTOs.CatalogoItemDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CatalogoItemDto.cs
Line coverage
100%
Covered lines: 17
Uncovered lines: 0
Coverable lines: 17
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_Id()100%11100%
get_Codigo()100%11100%
get_Nombre()100%11100%
get_Tipo()100%11100%
get_ClasificacionSiif()100%11100%
get_NormaLegal()100%11100%
get_EsGravado()100%11100%
get_AcumulaAguinaldo()100%11100%
get_LlevaAumento()100%11100%
get_FormulaCalculo()100%11100%
get_OrdenCalculo()100%11100%
get_ContribuyeWPara53()100%11100%
get_ContribuyeWPara10()100%11100%
get_ContribuyeWPara20()100%11100%
get_ContribuyeWNominal()100%11100%
get_EsFicto()100%11100%
get_Vigente()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class CatalogoItemDto
 4{
 195    public long Id { get; set; }
 196    public int Codigo { get; set; }
 327    public string Nombre { get; set; } = string.Empty;
 328    public string Tipo { get; set; } = string.Empty;
 199    public string? ClasificacionSiif { get; set; }
 1910    public string? NormaLegal { get; set; }
 1911    public bool EsGravado { get; set; }
 1912    public bool AcumulaAguinaldo { get; set; }
 1913    public bool LlevaAumento { get; set; }
 1914    public string? FormulaCalculo { get; set; }
 1915    public short OrdenCalculo { get; set; }
 1916    public bool ContribuyeWPara53 { get; set; }
 1917    public bool ContribuyeWPara10 { get; set; }
 1918    public bool ContribuyeWPara20 { get; set; }
 1919    public bool ContribuyeWNominal { get; set; }
 1920    public bool EsFicto { get; set; }
 1921    public bool Vigente { get; set; }
 22}