< Summary

Information
Class: Despesas.Application.Dtos.Core.GoogleAuthenticationDto
Assembly: Despesas.Application
File(s): /src/Despesas.Application/Dtos/Core/GoogleAuthenticationDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 13
Line coverage: 0%
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_Nome()100%210%
get_SobreNome()100%210%
get_Telefone()100%210%
get_Email()100%210%
get_ExternalProvider()100%210%
get_ExternalId()100%210%

File(s)

/src/Despesas.Application/Dtos/Core/GoogleAuthenticationDto.cs

#LineLine coverage
 1using Despesas.Application.Dtos.Abstractions;
 2
 3namespace Despesas.Application.Dtos.Core;
 4
 5public class GoogleAuthenticationDto : AuthenticationDto
 6{
 07    public virtual string? Nome { get; set; }
 08    public virtual string? SobreNome { get; set; }
 09    public virtual string? Telefone { get; set; }
 010    public virtual string? Email { get; set; }
 011    public string? ExternalProvider { get; set; }
 012    public string? ExternalId { get; set; }
 13}