< Summary

Information
Class: FAU.Entidades.ReciboItemDto
Assembly: FAU.Entidades
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/ReciboItemDto.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 9
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_Codigo()100%11100%
get_Descripcion()100%11100%
get_RubroContable()100%11100%
get_Monto()100%11100%

File(s)

/home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Entidades/ReciboItemDto.cs

#LineLine coverage
 1namespace FAU.Entidades;
 2
 3public class ReciboItemDto
 4{
 2005    public string Codigo { get; set; } = string.Empty;
 2616    public string Descripcion { get; set; } = string.Empty;
 1927    public string RubroContable { get; set; } = string.Empty;
 1778    public decimal Monto { get; set; }
 9}