< Summary

Information
Class: FAU.Logica.DTOs.PersonaDto
Assembly: FAU.Logica
File(s): /home/runner/work/Sistema.Liquidacion.BE/Sistema.Liquidacion.BE/FAU.Logica/DTOs/PersonaDto.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
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_Id()100%11100%
get_Cedula()100%11100%
get_Nombre()100%11100%
get_Apellido()100%11100%
get_Email()100%11100%
get_Telefono()100%11100%

File(s)

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

#LineLine coverage
 1namespace FAU.Logica.DTOs;
 2
 3public class PersonaDto
 4{
 25    public long Id { get; set; }
 36    public string Cedula { get; set; } = string.Empty;
 37    public string Nombre { get; set; } = string.Empty;
 38    public string Apellido { get; set; } = string.Empty;
 29    public string? Email { get; set; }
 210    public string? Telefono { get; set; }
 11}
 12