< Summary

Information
Class: FAU.Logica.DTOs.TipoBeneficioDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/TipoBeneficioDto.cs
Line coverage
100%
Covered lines: 9
Uncovered lines: 0
Coverable lines: 9
Total lines: 14
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_EsMensual()100%11100%
get_PermiteRetroactividad()100%11100%
get_PlazoPresentacionDias()100%11100%
get_MontoReferencia()100%11100%
get_CatalogoItemId()100%11100%
get_Activo()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class TipoBeneficioDto
 4{
 25    public long Id { get; set; }
 56    public string Codigo { get; set; } = string.Empty;
 57    public string Nombre { get; set; } = string.Empty;
 18    public bool EsMensual { get; set; }
 19    public bool PermiteRetroactividad { get; set; }
 110    public short? PlazoPresentacionDias { get; set; }
 111    public decimal? MontoReferencia { get; set; }
 112    public long? CatalogoItemId { get; set; }
 213    public bool Activo { get; set; }
 14}