< Summary

Class:ShortcutsFeature
Assembly:Shortcuts
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Shortcuts/ShortcutsFeature.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:14
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ShortcutsFeature()0%2100%
Dispose()0%6200%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Shortcuts/ShortcutsFeature.cs

#LineLine coverage
 1using UnityEngine.Assertions;
 2using UnityEngine.XR;
 3
 4public class ShortcutsFeature : IPlugin
 5{
 6    internal ShortcutsController shortcutsController;
 7
 08    public ShortcutsFeature ()
 9    {
 010        shortcutsController = new ShortcutsController();
 011    }
 12
 013    public void Dispose() { shortcutsController?.Dispose(); }
 14}

Methods/Properties

ShortcutsFeature()
Dispose()