< 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
0%
Covered lines: 0
Uncovered lines: 8
Coverable lines: 8
Total lines: 13
Line coverage: 0%
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%210%
get_Cedula()100%210%
get_Nombre()100%210%
get_Apellido()100%210%
get_Regimen()100%210%
get_Programa()100%210%
get_Unidad()100%210%
get_LiquidoPagable()100%210%

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{
 05    public long RelacionLaboralId { get; set; }
 06    public string Cedula { get; set; } = string.Empty;
 07    public string Nombre { get; set; } = string.Empty;
 08    public string Apellido { get; set; } = string.Empty;
 09    public string Regimen { get; set; } = string.Empty;
 010    public string Programa { get; set; } = string.Empty;
 011    public string Unidad { get; set; } = string.Empty;
 012    public decimal LiquidoPagable { get; set; }
 13}