< Summary

Class:GotoPanelPlugin
Assembly:GotoHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/GotoPanelHUD/GotoPanelPlugin.cs
Covered lines:0
Uncovered lines:7
Coverable lines:7
Total lines:17
Line coverage:0% (0 of 7)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/GotoPanelHUD/GotoPanelPlugin.cs

#LineLine coverage
 1public class GotoPanelPlugin : IPlugin
 2{
 3    public GotoPanel.GotoPanelHUDController gotoPanelHUDController;
 4
 05    public GotoPanelPlugin()
 6    {
 07        gotoPanelHUDController = CreateController();
 08        gotoPanelHUDController.Initialize();
 09    }
 10
 011    internal virtual GotoPanel.GotoPanelHUDController CreateController() => new GotoPanel.GotoPanelHUDController();
 12
 13    public void Dispose()
 14    {
 015        gotoPanelHUDController.Dispose();
 016    }
 17}