< Summary

Information
Class: Despesas.Application.Dtos.Abstractions.AuthenticationDto
Assembly: Despesas.Application
File(s): /src/Despesas.Application/Dtos/Core/AuthenticationDto.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
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_Authenticated()100%11100%
get_Created()100%11100%
get_Expiration()100%11100%
get_AccessToken()100%11100%
get_RefreshToken()100%11100%

File(s)

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

#LineLine coverage
 1namespace Despesas.Application.Dtos.Abstractions;
 2public class AuthenticationDto
 3{
 124    public bool Authenticated { get; set; }
 75    public string? Created { get; set; }
 86    public string? Expiration { get; set; }
 107    public string? AccessToken { get; set; }
 38    public string? RefreshToken { get; set; }
 9}