< Summary

Information
Class: FAU.Logica.DTOs.CalculoItemDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CalculoItemDto.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_Cedula()100%11100%
get_Version()100%11100%
get_CodigoConcepto()100%11100%
get_NombreConcepto()100%11100%
get_Importe()100%11100%
get_RubroContable()100%11100%
get_ObjetoGasto()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class CalculoItemDto
 4{
 35    public string Cedula { get; set; } = string.Empty;
 16    public int Version { get; set; }
 27    public string CodigoConcepto { get; set; } = string.Empty;
 28    public string NombreConcepto { get; set; } = string.Empty;
 29    public decimal Importe { get; set; }
 210    public string RubroContable { get; set; } = string.Empty;
 111    public string? ObjetoGasto { get; set; }
 12}