< Summary

Class:DCL.AssetPromiseKeeper_Font
Assembly:AssetPromiseKeeper
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/AssetManager/Font/AssetPromiseKeeper_Font.cs
Covered lines:2
Uncovered lines:1
Coverable lines:3
Total lines:13
Line coverage:66.6% (2 of 3)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
AssetPromiseKeeper_Font()0%110100%
AssetPromiseKeeper_Font(...)0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/AssetManager/Font/AssetPromiseKeeper_Font.cs

#LineLine coverage
 1using System;
 2
 3namespace DCL
 4{
 5    public class AssetPromiseKeeper_Font : AssetPromiseKeeper<Asset_Font, AssetLibrary_RefCounted<Asset_Font>, AssetProm
 6    {
 7        private static AssetPromiseKeeper_Font instance;
 528        public static AssetPromiseKeeper_Font i { get { return instance ??= new AssetPromiseKeeper_Font(); } }
 9
 2810        public AssetPromiseKeeper_Font() : base(new AssetLibrary_RefCounted<Asset_Font>()) { }
 011        public AssetPromiseKeeper_Font(AssetLibrary_RefCounted<Asset_Font> library) : base(library) { }
 12    }
 13}