< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ShortcutsFeature()0%110100%
Dispose()0%220100%

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
 1258    public ShortcutsFeature ()
 9    {
 12510        shortcutsController = new ShortcutsController();
 12511    }
 12
 24813    public void Dispose() { shortcutsController?.Dispose(); }
 14}

Methods/Properties

ShortcutsFeature()
Dispose()