< Summary

Class:DCL.SettingsPanelHUD.Common.CommonSettingsPanelEvents
Assembly:SettingsPanelHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/SettingsPanelHUD/Scripts/Common/CommonSettingsPanelEvents.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:10
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
RaiseRefreshAllWidgetsSize()0%220100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/SettingsPanelHUD/Scripts/Common/CommonSettingsPanelEvents.cs

#LineLine coverage
 1using System;
 2
 3namespace DCL.SettingsPanelHUD.Common
 4{
 5    public static class CommonSettingsPanelEvents
 6    {
 7        public static event Action OnRefreshAllWidgetsSize;
 68        public static void RaiseRefreshAllWidgetsSize() { OnRefreshAllWidgetsSize?.Invoke(); }
 9    }
 10}

Methods/Properties

RaiseRefreshAllWidgetsSize()