< Summary

Class:DCL.MyAccount.WebInterfaceBlockedListApiBridge
Assembly:MyAccountHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/WebInterfaceBlockedListApiBridge.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:14
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:2
Method coverage:0% (0 of 2)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
WebInterfaceBlockedListApiBridge()0%2100%
SendUnblockPlayer(...)0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/WebInterfaceBlockedListApiBridge.cs

#LineLine coverage
 1using DCL.Interface;
 2
 3namespace DCL.MyAccount
 4{
 5    public class WebInterfaceBlockedListApiBridge : IBlockedListApiBridge
 6    {
 07        public WebInterfaceBlockedListApiBridge() { }
 8
 9        public void SendUnblockPlayer(string playerId)
 10        {
 011            WebInterface.SendUnblockPlayer(playerId);
 012        }
 13    }
 14}