< Summary

Class:DCL.SettingsCommon.SettingsControllers.GeneralSettingsReferences
Assembly:SettingsControllers
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Settings/SettingsControllers/GeneralSettingsReferences.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:15
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Awake()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Settings/SettingsControllers/GeneralSettingsReferences.cs

#LineLine coverage
 1using Cinemachine;
 2using UnityEngine;
 3
 4namespace DCL.SettingsCommon.SettingsControllers
 5{
 6    /// <summary>
 7    /// This MonoBehaviour will only contain the external references needed for the general settings.
 8    /// </summary>
 9    public class GeneralSettingsReferences : MonoBehaviour
 10    {
 011        public static GeneralSettingsReferences i { get; private set; }
 12
 013        private void Awake() { i = this; }
 14    }
 15}