< Summary

Class:DCLServices.WearablesCatalogService.WearablesWebInterfaceBridge
Assembly:WearablesCatalogService
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLServices/WearablesCatalogService/WearablesWebInterfaceBridge.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:15
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0
Covered methods:2
Total methods:2
Method coverage:100% (2 of 2)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
RequestWearables(...)0%110100%
RequestThirdPartyWearables(...)0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/DCLServices/WearablesCatalogService/WearablesWebInterfaceBridge.cs

#LineLine coverage
 1using DCL.Interface;
 2using System.Collections.Generic;
 3using System.Linq;
 4
 5namespace DCLServices.WearablesCatalogService
 6{
 7    public class WearablesWebInterfaceBridge
 8    {
 9        public virtual void RequestWearables(string ownedByUser, string[] wearableIds, string[] collectionIds, string co
 610            WebInterface.RequestWearables(ownedByUser, wearableIds, collectionIds, context);
 11
 12        public virtual void RequestThirdPartyWearables(string ownedByUser, string thirdPartyCollectionId, string context
 213            WebInterface.RequestThirdPartyWearables(ownedByUser, thirdPartyCollectionId, context);
 14    }
 15}