< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1using JetBrains.Annotations;
 2
 3namespace DCL.Chat.Notifications
 4{
 5    public class PrivateChatMessageNotificationModel
 6    {
 27        public string MessageId { get; }
 18        public string SenderId { get; }
 59        public string Body { get; }
 110        public ulong Timestamp { get; }
 311        [CanBeNull] public string Username { get; }
 312        [CanBeNull] public string ProfilePicture { get; }
 13
 314        public PrivateChatMessageNotificationModel(string messageId, string senderId, string body, ulong timestamp, stri
 15        {
 316            MessageId = messageId;
 317            SenderId = senderId;
 318            Body = body;
 319            Timestamp = timestamp;
 320            Username = username;
 321            ProfilePicture = profilePicture;
 322        }
 23    }
 24}