< Summary

Information
Class: Syki.Shared.UserOut
Assembly: Shared
File(s): /home/runner/work/syki/syki/Shared/Features/Cross/CreateUser/UserOut.cs
Tag: 22_11348620282
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 12
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_Id()100%11100%
get_Name()100%11100%
get_Email()100%11100%
get_Password()100%11100%
get_InstitutionId()100%11100%
get_Institution()100%11100%
get_Role()100%11100%

File(s)

/home/runner/work/syki/syki/Shared/Features/Cross/CreateUser/UserOut.cs

#LineLine coverage
 1namespace Syki.Shared;
 2
 3public class UserOut
 4{
 21075    public Guid Id { get; set; }
 17516    public string Name { get; set; }
 24837    public string Email { get; set; }
 14868    public string Password { get; set; }
 14079    public Guid InstitutionId { get; set; }
 130310    public string Institution { get; set; }
 130311    public string Role { get; set; }
 12}