< Summary

Information
Class: FAU.Entidades.ReciboResumenDto
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/ReciboResumenDto.cs
Line coverage
100%
Covered lines: 8
Uncovered lines: 0
Coverable lines: 8
Total lines: 13
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_RelacionLaboralId()100%11100%
get_Cedula()100%11100%
get_Nombre()100%11100%
get_Apellido()100%11100%
get_Regimen()100%11100%
get_Programa()100%11100%
get_Unidad()100%11100%
get_LiquidoPagable()100%11100%

File(s)

/home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/ReciboResumenDto.cs

#LineLine coverage
 1namespace FAU.Entidades;
 2
 3public class ReciboResumenDto
 4{
 115    public long RelacionLaboralId { get; set; }
 206    public string Cedula { get; set; } = string.Empty;
 167    public string Nombre { get; set; } = string.Empty;
 168    public string Apellido { get; set; } = string.Empty;
 169    public string Regimen { get; set; } = string.Empty;
 1610    public string Programa { get; set; } = string.Empty;
 1611    public string Unidad { get; set; } = string.Empty;
 712    public decimal LiquidoPagable { get; set; }
 13}