< Summary

Class:CarouselComponentModel
Assembly:UIComponents
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/UIComponents/Scripts/Components/Carousel/CarouselComponentModel.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:14
Line coverage:100% (5 of 5)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/UIComponents/Scripts/Components/Carousel/CarouselComponentModel.cs

#LineLine coverage
 1using System;
 2using UnityEngine;
 3
 4[Serializable]
 5public class CarouselComponentModel : BaseComponentModel
 6{
 797    public float spaceBetweenItems = 10f;
 798    public float timeBetweenItems = 3f;
 799    public float animationTransitionTime = 1f;
 10    public AnimationCurve animationCurve;
 11    public Color backgroundColor;
 7912    public bool showManualControls = true;
 7913    public bool automaticTransition = true;
 14}

Methods/Properties

CarouselComponentModel()