< Summary

Information
Class: FAU.Logica.DTOs.CalculoEstadoDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/CalculoEstadoDto.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_Estado()100%11100%
get_MensajeError()100%11100%
get_Nominal()100%11100%
get_Descuentos()100%11100%
get_Liquido()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class CalculoEstadoDto
 4{
 365    public string Cedula { get; set; } = string.Empty;
 106    public int Version { get; set; }
 197    public string Estado { get; set; } = string.Empty;
 88    public string? MensajeError { get; set; }
 19    public decimal Nominal { get; set; }
 110    public decimal Descuentos { get; set; }
 111    public decimal Liquido { get; set; }
 12}