< Summary

Class:DCL.Chat.Notifications.FriendRequestNotificationModel
Assembly:NotificationMessagesHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/NotificationMessagesHUD/FriendRequestNotificationModel.cs
Covered lines:15
Uncovered lines:1
Coverable lines:16
Total lines:24
Line coverage:93.7% (15 of 16)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
FriendRequestNotificationModel(...)0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/NotificationMessagesHUD/FriendRequestNotificationModel.cs

#LineLine coverage
 1namespace DCL.Chat.Notifications
 2{
 3    public class FriendRequestNotificationModel
 4    {
 25        public string FriendRequestId { get; }
 66        public string UserId { get; }
 67        public string UserName { get; }
 68        public string Header { get; }
 69        public string Message { get; }
 010        public ulong Timestamp { get; }
 411        public bool IsAccepted { get; }
 12
 313        public FriendRequestNotificationModel(string friendRequestId, string userId, string userName, string header, str
 14        {
 315            FriendRequestId = friendRequestId;
 316            UserId = userId;
 317            UserName = userName;
 318            Header = header;
 319            Message = message;
 320            Timestamp = timestamp;
 321            IsAccepted = isAccepted;
 322        }
 23    }
 24}