< 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
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 21
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_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/UpdateAcreedorRequest.cs

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