< Summary

Information
Class: FAU.Entidades.PlanillaAjusteConRelacionRow
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/PlanillaAjusteConRelacionRow.cs
Line coverage
94%
Covered lines: 16
Uncovered lines: 1
Coverable lines: 17
Total lines: 19
Line coverage: 94.1%
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
.ctor(...)100%11100%
get_PeriodoId()100%210%
get_PersonaId()100%11100%
get_Cedula()100%11100%
get_PersonaNombre()100%11100%
get_SituacionNombre()100%11100%
get_UnidadNombre()100%11100%
get_CompaniaNombre()100%11100%
get_AcreedorId()100%11100%
get_AcreedorCodigo()100%11100%
get_AcreedorNombre()100%11100%
get_MontoSolicitado()100%11100%
get_MontoAplicado()100%11100%
get_MontoNoAplicado()100%11100%
get_Estado()100%11100%
get_Observaciones()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Entidades;
 2
 63public record PlanillaAjusteConRelacionRow(
 04    long PeriodoId,
 45    long PersonaId,
 66    string Cedula,
 87    string PersonaNombre,
 48    string SituacionNombre,
 49    string UnidadNombre,
 410    string CompaniaNombre,
 611    long AcreedorId,
 612    string AcreedorCodigo,
 1013    string AcreedorNombre,
 814    decimal MontoSolicitado,
 815    decimal MontoAplicado,
 616    decimal MontoNoAplicado,
 217    string Estado,
 218    string? Observaciones
 619);