< Summary

Information
Class: FAU.Logica.DTOs.AcreedorDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/AcreedorDto.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 12
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_Codigo()100%11100%
get_Nombre()100%11100%
get_PrioridadDeficit()100%11100%
get_FormatoArchivo()100%11100%
get_Contacto()100%11100%
get_Activo()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class AcreedorDto
 4{
 35    public long Id { get; set; }
 96    public string Codigo { get; set; } = string.Empty;
 67    public string Nombre { get; set; } = string.Empty;
 38    public short PrioridadDeficit { get; set; }
 39    public string? FormatoArchivo { get; set; }
 310    public string? Contacto { get; set; }
 611    public bool Activo { get; set; }
 12}