< Summary - Syki

Information
Class: Syki.Front.Auth.AuthUser
Assembly: Front
File(s): /home/runner/work/syki/syki/Front/Auth/AuthUser.cs
Tag: 4_16869239191
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 10
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_Id()100%210%
get_Name()100%210%
get_Email()100%210%
get_Role()100%210%
get_IsAuthenticated()100%210%

File(s)

/home/runner/work/syki/syki/Front/Auth/AuthUser.cs

#LineLine coverage
 1namespace Syki.Front.Auth;
 2
 3public class AuthUser
 4{
 05    public Guid Id { get; set; }
 06    public string Name { get; set; }
 07    public string Email { get; set; }
 08    public UserRole Role { get; set; }
 09    public bool IsAuthenticated { get; set; }
 10}