< Summary

Class:OutfitsResponse
Assembly:BackpackEditorHUDV2
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/BackpackEditorHUDV2/Outfits/OutfitsResponse.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:20
Line coverage:0% (0 of 4)
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
OutfitsResponse(...)0%2100%
OutfitsResponse()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/BackpackEditorHUDV2/Outfits/OutfitsResponse.cs

#LineLine coverage
 1using DCL.Backpack;
 2using System;
 3
 4[Serializable]
 5public class OutfitsResponse
 6{
 7    public Metadata metadata;
 08    public OutfitsResponse(Metadata metadata)
 9    {
 010        this.metadata = metadata;
 011    }
 12
 13    [Serializable]
 14    public class Metadata
 15    {
 16        public OutfitItem[] outfits;
 17    }
 18
 019    public OutfitsResponse() { }
 20}