< Summary

Information
Class: FAU.Logica.DTOs.MovimientoReporteDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/MovimientoReporteDto.cs
Line coverage
100%
Covered lines: 11
Uncovered lines: 0
Coverable lines: 11
Total lines: 16
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_TipoMovimiento()100%11100%
get_Grado()100%11100%
get_GradoAnterior()100%11100%
get_Escalafon()100%11100%
get_Cedula()100%11100%
get_Nombre()100%11100%
get_Apellido()100%11100%
get_Unidad()100%11100%
get_Programa()100%11100%
get_Ley()100%11100%
get_FechaMovimiento()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class MovimientoReporteDto
 4{
 35    public string TipoMovimiento { get; set; } = string.Empty;
 26    public string Grado { get; set; } = string.Empty;
 17    public string? GradoAnterior { get; set; }
 28    public string Escalafon { get; set; } = string.Empty;
 29    public string Cedula { get; set; } = string.Empty;
 310    public string Nombre { get; set; } = string.Empty;
 211    public string Apellido { get; set; } = string.Empty;
 212    public string Unidad { get; set; } = string.Empty;
 213    public string Programa { get; set; } = string.Empty;
 214    public string Ley { get; set; } = string.Empty;
 115    public DateTime FechaMovimiento { get; set; }
 16}