< 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
0%
Covered lines: 0
Uncovered lines: 11
Coverable lines: 11
Total lines: 16
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_TipoMovimiento()100%210%
get_Grado()100%210%
get_GradoAnterior()100%210%
get_Escalafon()100%210%
get_Cedula()100%210%
get_Nombre()100%210%
get_Apellido()100%210%
get_Unidad()100%210%
get_Programa()100%210%
get_Ley()100%210%
get_FechaMovimiento()100%210%

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{
 05    public string TipoMovimiento { get; set; } = string.Empty;
 06    public string Grado { get; set; } = string.Empty;
 07    public string? GradoAnterior { get; set; }
 08    public string Escalafon { get; set; } = string.Empty;
 09    public string Cedula { get; set; } = string.Empty;
 010    public string Nombre { get; set; } = string.Empty;
 011    public string Apellido { get; set; } = string.Empty;
 012    public string Unidad { get; set; } = string.Empty;
 013    public string Programa { get; set; } = string.Empty;
 014    public string Ley { get; set; } = string.Empty;
 015    public DateTime FechaMovimiento { get; set; }
 16}