< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ChannelJoinErrorWindowPlugin()0%2100%
Dispose()0%2100%

File(s)

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

#LineLine coverage
 1namespace DCL.Chat.HUD
 2{
 3    public class ChannelJoinErrorWindowPlugin : IPlugin
 4    {
 5        private readonly ChannelJoinErrorWindowController channelLimitReachedWindow;
 6
 07        public ChannelJoinErrorWindowPlugin()
 8        {
 09            channelLimitReachedWindow = new ChannelJoinErrorWindowController(
 10                ChannelJoinErrorWindowComponentView.Create(),
 11                ChatController.i,
 12                DataStore.i);
 013        }
 14
 015        public void Dispose() => channelLimitReachedWindow.Dispose();
 16    }
 17}