< Summary

Class:TeleportHUDPlugin
Assembly:TeleportHUDPlugin
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/TeleportHUDPlugin/TeleportHUDPlugin.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:20
Line coverage:0% (0 of 5)
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
TeleportHUDPlugin()0%2100%
Dispose()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLPlugins/TeleportHUDPlugin/TeleportHUDPlugin.cs

#LineLine coverage
 1using DCL;
 2using DCL.Map;
 3
 4public class TeleportHUDPlugin : IPlugin
 5{
 6    private readonly TeleportPromptHUDController teleportPromptHUDController;
 7
 08    public TeleportHUDPlugin()
 9    {
 010        teleportPromptHUDController = new TeleportPromptHUDController(DataStore.i,
 11            WebInterfaceMinimapApiBridge.i,
 12            DataStore.i.rpc.context.restrictedActions,
 13            Environment.i.world.teleportController);
 014    }
 15
 16    public void Dispose()
 17    {
 018        teleportPromptHUDController.Dispose();
 019    }
 20}

Methods/Properties

TeleportHUDPlugin()
Dispose()