< Summary

Information
Class: LGDXRobotCloud.Data.Entities.LgdxUser
Assembly: LGDXRobotCloud.Data
File(s): /builds/yukaitung/lgdxrobot2-cloud/LGDXRobotCloud.Data/Entities/LgdxUser.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 13
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_Name()100%11100%
get_RefreshTokenHash()100%11100%

File(s)

/builds/yukaitung/lgdxrobot2-cloud/LGDXRobotCloud.Data/Entities/LgdxUser.cs

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2using Microsoft.AspNetCore.Identity;
 3
 4namespace LGDXRobotCloud.Data.Entities;
 5
 6public class LgdxUser : IdentityUser
 7{
 8  [PersonalData]
 1079  public string? Name { get; set; }
 10
 11  [MaxLength(64)]
 1612  public string? RefreshTokenHash { get; set; }
 13}

Methods/Properties

get_Name()
get_RefreshTokenHash()