< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.EndpointNotFoundException
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/EndpointNotFoundException.cs
Line coverage
33%
Covered lines: 1
Uncovered lines: 2
Coverable lines: 3
Total lines: 16
Line coverage: 33.3%
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%
.ctor(...)100%110%
.ctor(...)100%110%

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/EndpointNotFoundException.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 System;
 5
 6namespace CoreWCF
 7{
 8    //[Serializable]
 9    public class EndpointNotFoundException : CommunicationException
 10    {
 211        public EndpointNotFoundException() { }
 012        public EndpointNotFoundException(string message) : base(message) { }
 013        public EndpointNotFoundException(string message, Exception innerException) : base(message, innerException) { }
 14        //protected EndpointNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) { 
 15    }
 16}