< Summary

Information
Class: FAU.Logica.DTOs.UpdateAcreedorRequest
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/UpdateAcreedorRequest.cs
Line coverage
16%
Covered lines: 1
Uncovered lines: 5
Coverable lines: 6
Total lines: 21
Line coverage: 16.6%
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_Nombre()100%11100%
get_CategoriaDeficit()100%210%
get_OrdenLegalDeficit()100%210%
get_FormatoArchivo()100%210%
get_Contacto()100%210%
get_Activo()100%210%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace FAU.Logica.DTOs;
 4
 5public class UpdateAcreedorRequest
 6{
 7    [MaxLength(150)]
 28    public string? Nombre { get; set; }
 9
 010    public string? CategoriaDeficit { get; set; }
 11
 012    public short? OrdenLegalDeficit { get; set; }
 13
 14    [MaxLength(10)]
 015    public string? FormatoArchivo { get; set; }
 16
 17    [MaxLength(200)]
 018    public string? Contacto { get; set; }
 19
 020    public bool? Activo { get; set; }
 21}