< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.Channels.MessageHeaderInfo
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Channels/MessageHeaderInfo.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 16
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

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

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Channels/MessageHeaderInfo.cs

#LineLine coverage
 1// Licensed to the .NET Foundation under one or more agreements.
 2// The .NET Foundation licenses this file to you under the MIT license.
 3
 4namespace CoreWCF.Channels
 5{
 6    public abstract class MessageHeaderInfo
 7    {
 1064428        protected MessageHeaderInfo() { }
 9        public abstract string Actor { get; }
 10        public abstract bool IsReferenceParameter { get; }
 11        public abstract bool MustUnderstand { get; }
 12        public abstract string Name { get; }
 13        public abstract string Namespace { get; }
 14        public abstract bool Relay { get; }
 15    }
 16}

Methods/Properties

.ctor()