< 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
0%
Covered lines: 0
Uncovered lines: 9
Coverable lines: 9
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_Id()100%210%
get_UsuarioNombre()100%210%
get_AccionNombre()100%210%
get_ContextoNombre()100%210%
get_Fecha()100%210%
get_Host()100%210%
get_Entidad()100%210%
get_EntidadId()100%210%
get_Detalle()100%210%

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 {
 04  public long Id { get; set; }
 05  public string? UsuarioNombre { get; set; }
 06  public string? AccionNombre { get; set; }
 07  public string? ContextoNombre { get; set; }
 08  public DateTime Fecha { get; set; }
 09  public string? Host { get; set; }
 010  public string? Entidad { get; set; }
 011  public long? EntidadId { get; set; }
 012  public string? Detalle { get; set; }
 13}