< Summary

Class:PublicChatChannelModel
Assembly:WorldChatWindowHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/WorldChatWindowHUD/PublicChatChannelModel.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:16
Line coverage:100% (5 of 5)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/WorldChatWindowHUD/PublicChatChannelModel.cs

#LineLine coverage
 1using System;
 2
 3[Serializable]
 4public class PublicChatChannelModel : BaseComponentModel
 5{
 6    public string channelId;
 7    public string name;
 8    public string description;
 9
 3910    public PublicChatChannelModel(string channelId, string name, string description)
 11    {
 3912        this.channelId = channelId;
 3913        this.name = name;
 3914        this.description = description;
 3915    }
 16}