< Summary

Class:DCL.ContentModeration.AdultContentEnabledNotificationComponentView
Assembly:ContentModerationHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/ContentModerationHUD/AdultContentEnabledNotificationComponentView.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:13
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:3
Method coverage:0% (0 of 3)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
RefreshControl()0%2100%
ShowNotification()0%2100%
HideNotification()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/ContentModerationHUD/AdultContentEnabledNotificationComponentView.cs

#LineLine coverage
 1namespace DCL.ContentModeration
 2{
 3    public class AdultContentEnabledNotificationComponentView : BaseComponentView, IAdultContentEnabledNotificationCompo
 4    {
 05        public override void RefreshControl() { }
 6
 7        public void ShowNotification() =>
 08            Show();
 9
 10        public void HideNotification() =>
 011            Hide();
 12    }
 13}