< Summary

Information
Class: FAU.Logica.DTOs.ConfigurarFranjasIrpfRequest
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/ConfigurarFranjasIrpfRequest.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 10
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_Franjas()100%11100%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace FAU.Logica.DTOs;
 4
 5public class ConfigurarFranjasIrpfRequest
 6{
 7    [Required]
 8    [MinLength(1)]
 129    public List<FranjaIrpfConfiguradaRequest> Franjas { get; set; } = new();
 10}

Methods/Properties

get_Franjas()