< Summary

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

Metrics

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

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    {
 05        public IWearableRetriever GetWearableRetriever() => new WearableRetriever();
 06        public IFacialFeatureRetriever GetFacialFeatureRetriever() => new FacialFeatureRetriever();
 7    }
 8}