< 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:19
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
 1using DCL.Social.Chat;
 2
 3namespace DCL.Chat.HUD
 4{
 5    public class ChannelJoinErrorWindowPlugin : IPlugin
 6    {
 7        private readonly ChannelJoinErrorWindowController channelLimitReachedWindow;
 8
 09        public ChannelJoinErrorWindowPlugin()
 10        {
 011            channelLimitReachedWindow = new ChannelJoinErrorWindowController(
 12                ChannelJoinErrorWindowComponentView.Create(),
 13                ChatController.i,
 14                DataStore.i);
 015        }
 16
 017        public void Dispose() => channelLimitReachedWindow.Dispose();
 18    }
 19}