< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1using DCL.Helpers;
 2
 3namespace DCL.Chat.HUD
 4{
 5    public class PromoteChannelsToastPlugin : IPlugin
 6    {
 7        private readonly PromoteChannelsToastComponentController promoteChannelsToastController;
 8
 09        public PromoteChannelsToastPlugin()
 10        {
 011            promoteChannelsToastController = new PromoteChannelsToastComponentController(
 12                PromoteChannelsToastComponentView.Create(),
 13                new DefaultPlayerPrefs(),
 14                DataStore.i,
 15                CommonScriptableObjects.rendererState);
 016        }
 17
 018        public void Dispose() => promoteChannelsToastController.Dispose();
 19    }
 20}