< 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: 8
Uncovered lines: 0
Coverable lines: 8
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_Codigo()100%11100%
get_Nombre()100%11100%
get_CategoriaDeficit()100%11100%
get_OrdenLegalDeficit()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{
 85    public long Id { get; set; }
 166    public string Codigo { get; set; } = string.Empty;
 167    public string Nombre { get; set; } = string.Empty;
 148    public string CategoriaDeficit { get; set; } = string.Empty;
 49    public short OrdenLegalDeficit { get; set; }
 410    public string? FormatoArchivo { get; set; }
 411    public string? Contacto { get; set; }
 712    public bool Activo { get; set; }
 13}