< Summary

Class:DCL.Chat.Notifications.PublicChannelMessageNotificationModel
Assembly:NotificationMessagesHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/NotificationMessagesHUD/PublicChannelMessageNotificationModel.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
PublicChannelMessageNotificationModel(...)0%110100%

File(s)

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

#LineLine coverage
 1using JetBrains.Annotations;
 2
 3namespace DCL.Chat.Notifications
 4{
 5    public class PublicChannelMessageNotificationModel
 6    {
 67        public string MessageId { get; }
 108        public string Body { get; }
 79        public string ChannelName { get; }
 610        public string ChannelId { get; }
 211        public ulong Timestamp { get; }
 812        [CanBeNull] public string Username { get; }
 13
 714        public PublicChannelMessageNotificationModel(string messageId, string body, string channelName, string channelId
 15        {
 716            MessageId = messageId;
 717            Body = body;
 718            ChannelName = channelName;
 719            ChannelId = channelId;
 720            Timestamp = timestamp;
 721            Username = username;
 722        }
 23    }
 24}