< Summary

Information
Class: ArturRios.Util.WebApi.Security.Records.GoogleTokenPayload
Assembly: ArturRios.Util.WebApi
File(s): D:\Repositories\dotnet-webapi-util\src\Security\Records\GoogleTokenPayload.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 7
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage
100%
Covered methods: 1
Fully covered methods: 1
Total methods: 1
Method coverage: 100%
Full method coverage: 100%

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Email()100%11100%

File(s)

D:\Repositories\dotnet-webapi-util\src\Security\Records\GoogleTokenPayload.cs

#LineLine coverage
 1namespace ArturRios.Util.WebApi.Security.Records;
 2
 3/// <summary>The verified subset of a Google ID token used to resolve the app user.</summary>
 4/// <param name="Email">The token's email claim.</param>
 5/// <param name="Subject">Google's stable subject identifier (<c>sub</c>).</param>
 6/// <param name="EmailVerified">Whether Google has verified ownership of <paramref name="Email"/> (the token's <c>email_
 157public record GoogleTokenPayload(string Email, string Subject, bool EmailVerified);

Methods/Properties

get_Email()