< Summary

Class:DCL.DataStore_Cursor
Assembly:DataStore
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DataStore/DataStore_Cursor.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:18
Line coverage:100% (6 of 6)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:1
Method coverage:100% (1 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
DataStore_Cursor()0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DataStore/DataStore_Cursor.cs

#LineLine coverage
 1namespace DCL
 2{
 3    public class DataStore_Cursor
 4    {
 5        public enum CursorType
 6        {
 7            NORMAL,
 8            HOVER
 9        }
 10
 35011        public readonly BaseVariable<bool> cursorVisible = new BaseVariable<bool>(true);
 35012        public readonly BaseVariable<CursorType> cursorType = new BaseVariable<CursorType>(CursorType.NORMAL);
 35013        public readonly BaseVariable<bool> hoverFeedbackEnabled = new BaseVariable<bool>(false);
 35014        public readonly BaseVariable<bool> hoverFeedbackHoverState = new BaseVariable<bool>(false);
 35015        public readonly BaseVariable<string> hoverFeedbackButton = new BaseVariable<string>();
 35016        public readonly BaseVariable<string> hoverFeedbackText = new BaseVariable<string>();
 17    }
 18}

Methods/Properties

DataStore_Cursor()