< Summary

Information
Class: TicTacToeApp.API.Entity.User
Assembly: TicTacToeApp.API
File(s): /home/runner/work/TicTacToe/TicTacToe/TicTacToeApp.API/Entity/User.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 19
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%

File(s)

/home/runner/work/TicTacToe/TicTacToe/TicTacToeApp.API/Entity/User.cs

#LineLine coverage
 1using System.Text.Json.Serialization;
 2
 3namespace TicTacToeApp.API.Entity;
 4
 5public class User
 6{
 07    public int Id { get; set; } //= Guid.NewGuid();
 08    public string Name { get; set; } = string.Empty;
 9    //
 10    // public uint Age { get; set;}
 11    //
 12    // public uint Age2 { get; set;}
 13    //
 14    // public uint Age3 { get; set;}
 15
 16    //
 17    // [JsonIgnore]
 18    // public ICollection<Game> Games { get; set; } = default!;
 19}

Methods/Properties

get_Id()
get_Name()