< Summary

Information
Class: FAU.Logica.DTOs.BitacoraDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/BitacoaraDto.cs
Line coverage
100%
Covered lines: 9
Uncovered lines: 0
Coverable lines: 9
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_Id()100%11100%
get_UsuarioNombre()100%11100%
get_AccionNombre()100%11100%
get_ContextoNombre()100%11100%
get_Fecha()100%11100%
get_Host()100%11100%
get_Entidad()100%11100%
get_EntidadId()100%11100%
get_Detalle()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class BitacoraDto {
 24  public long Id { get; set; }
 15  public string? UsuarioNombre { get; set; }
 26  public string? AccionNombre { get; set; }
 17  public string? ContextoNombre { get; set; }
 18  public DateTime Fecha { get; set; }
 19  public string? Host { get; set; }
 110  public string? Entidad { get; set; }
 111  public long? EntidadId { get; set; }
 112  public string? Detalle { get; set; }
 13}