< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.Dispatcher.ErrorHandlerFaultInfo
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Dispatcher/ErrorHandlerFaultInfo.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 23
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/Dispatcher/ErrorHandlerFaultInfo.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
 4using CoreWCF.Channels;
 5
 6namespace CoreWCF.Dispatcher
 7{
 8    internal struct ErrorHandlerFaultInfo
 9    {
 10        public ErrorHandlerFaultInfo(string defaultFaultAction)
 11        {
 255712            DefaultFaultAction = defaultFaultAction;
 255713            Fault = null;
 255714            IsConsideredUnhandled = false;
 255715        }
 16
 624917        public Message Fault { get; set; }
 18
 256119        public string DefaultFaultAction { get; set; }
 20
 533521        public bool IsConsideredUnhandled { get; set; }
 22    }
 23}