< Summary

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

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/ExperiencesViewer/Scripts/ExperienceRowComponentModel.cs

#LineLine coverage
 1using System;
 2using UnityEngine;
 3
 4namespace DCL.ExperiencesViewer
 5{
 6    [Serializable]
 7    public class ExperienceRowComponentModel : BaseComponentModel
 8    {
 9        public string id;
 10        public string iconUri;
 11        public string name;
 12        public bool isUIVisible;
 13        public bool isPlaying;
 14        public Color backgroundColor;
 15        public Color onHoverColor;
 3116        public bool allowStartStop = true;
 17    }
 18}

Methods/Properties

ExperienceRowComponentModel()