< Summary

Class:AvatarSystem.RetrieverFactory
Assembly:AvatarSystem
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/AvatarSystem/Loader/RetrieverFactory.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:8
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/AvatarSystem/Loader/RetrieverFactory.cs

#LineLine coverage
 1namespace AvatarSystem
 2{
 3    public class RetrieverFactory : IRetrieverFactory
 4    {
 15        public IWearableRetriever GetWearableRetriever() => new WearableRetriever();
 36        public IFacialFeatureRetriever GetFacialFeatureRetriever() => new FacialFeatureRetriever();
 7    }
 8}