< Summary

Class:DCL.Guests.HUD.ConnectWallet.ConnectWalletModalPlugin
Assembly:ConnectWalletHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/ConnectWalletHUD/ConnectWalletModalPlugin.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:23
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/ConnectWalletHUD/ConnectWalletModalPlugin.cs

#LineLine coverage
 1using DCL.Browser;
 2
 3namespace DCL.Guests.HUD.ConnectWallet
 4{
 5    /// <summary>
 6    /// Plugin feature that initialize the Connect Wallet Modal feature.
 7    /// </summary>
 8    public class ConnectWalletModalPlugin : IPlugin
 9    {
 10        private readonly ConnectWalletComponentController joinChannelComponentController;
 11
 012        public ConnectWalletModalPlugin()
 13        {
 014            joinChannelComponentController = new ConnectWalletComponentController(
 15                ConnectWalletComponentView.Create(),
 16                new WebInterfaceBrowserBridge(),
 17                new UserProfileWebInterfaceBridge(),
 18                DataStore.i);
 019        }
 20
 021        public void Dispose() { joinChannelComponentController.Dispose(); }
 22    }
 23}