< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
AssetPromiseKeeper_GLTF()0%110100%
OnSilentForget(...)0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/AssetManager/GLTF/AssetPromiseKeeper_GLTF.cs

#LineLine coverage
 1namespace DCL
 2{
 3    public class AssetPromiseKeeper_GLTF : AssetPromiseKeeper<Asset_GLTF, AssetLibrary_GLTF, AssetPromise_GLTF>
 4    {
 5        private static AssetPromiseKeeper_GLTF instance;
 8636        public static AssetPromiseKeeper_GLTF i { get { return instance ??= new AssetPromiseKeeper_GLTF(); } }
 7
 528        public AssetPromiseKeeper_GLTF() : base(new AssetLibrary_GLTF()) { }
 9
 610        protected override void OnSilentForget(AssetPromise_GLTF promise) { promise.OnSilentForget(); }
 11    }
 12}