< Summary

Class:AvatarSystem.BodyWearables
Assembly:AvatarSystemDefinitions
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/AvatarSystem/Definitions/LoaderDefinitions/BodyWearables.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:18
Line coverage:0% (0 of 10)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:9
Method coverage:0% (0 of 9)

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/AvatarSystem/Definitions/LoaderDefinitions/BodyWearables.cs

#LineLine coverage
 1namespace AvatarSystem
 2{
 3    public class BodyWearables
 4    {
 05        public WearableItem BodyShape { get; private set; }
 06        public WearableItem Eyes{ get; private set; }
 07        public WearableItem Eyebrows{ get; private set; }
 08        public WearableItem Mouth{ get; private set; }
 9
 010        public BodyWearables(WearableItem bodyShape, WearableItem eyes, WearableItem eyebrows, WearableItem mouth)
 11        {
 012            this.BodyShape = bodyShape;
 013            this.Eyes = eyes;
 014            this.Eyebrows = eyebrows;
 015            this.Mouth = mouth;
 016        }
 17    }
 18}