< Summary

Class:DCL.AssetPromiseKeeper_PrimitiveMesh
Assembly:AssetPromiseKeeper
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/AssetManager/PrimitiveMesh/AssetPromiseKeeper_PrimitiveMesh.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:12
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/AssetManager/PrimitiveMesh/AssetPromiseKeeper_PrimitiveMesh.cs

#LineLine coverage
 1using System;
 2
 3namespace DCL
 4{
 5    public class AssetPromiseKeeper_PrimitiveMesh : AssetPromiseKeeper<Asset_PrimitiveMesh, AssetLibrary_RefCounted<Asse
 6    {
 7        private static AssetPromiseKeeper_PrimitiveMesh instance;
 698        public static AssetPromiseKeeper_PrimitiveMesh i { get { return instance ??= new AssetPromiseKeeper_PrimitiveMes
 9
 3010        public AssetPromiseKeeper_PrimitiveMesh() : base(new AssetLibrary_RefCounted<Asset_PrimitiveMesh>()) { }
 11    }
 12}