< Summary

Class:SharpHoundCommonLib.OutputTypes.Domain
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\Domain.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:12
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\OutputTypes\Domain.cs

#LineLine coverage
 1using System;
 2
 3namespace SharpHoundCommonLib.OutputTypes
 4{
 5    public class Domain : OutputBase
 6    {
 07        public ResultingGPOChanges GPOChanges = new();
 08        public TypedPrincipal[] ChildObjects { get; set; } = Array.Empty<TypedPrincipal>();
 09        public DomainTrust[] Trusts { get; set; } = Array.Empty<DomainTrust>();
 010        public GPLink[] Links { get; set; } = Array.Empty<GPLink>();
 11    }
 12}

Methods/Properties

.ctor()
ChildObjects()
Trusts()
Links()