< Summary

Class:SharpHoundCommonLib.Processors.CachedLocalItem
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\Processors\CachedLocalItem.cs
Covered lines:7
Uncovered lines:0
Coverable lines:7
Total lines:16
Line coverage:100% (7 of 7)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor(...)100%10100%

File(s)

D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\Processors\CachedLocalItem.cs

#LineLine coverage
 1using SharpHoundCommonLib.Enums;
 2
 3namespace SharpHoundCommonLib.Processors
 4{
 5    internal class CachedLocalItem
 6    {
 37        public CachedLocalItem(string name, Label type)
 38        {
 39            Name = name;
 310            Type = type;
 311        }
 12
 313        public string Name { get; set; }
 314        public Label Type { get; set; }
 15    }
 16}