< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.DummyTransportBindingElement
Assembly: CoreWCF.Http
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Http/src/CoreWCF/DummyTransportBindingElement.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 21
Line coverage: 0%
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%110%
Clone()100%110%

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Http/src/CoreWCF/DummyTransportBindingElement.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
 7{
 8    internal class DummyTransportBindingElement : TransportBindingElement
 9    {
 010        public DummyTransportBindingElement()
 11        {
 012        }
 13
 14        public override BindingElement Clone()
 15        {
 016            return this;
 17        }
 18
 019        public override string Scheme { get { return "dummy"; } }
 20    }
 21}

Methods/Properties

.ctor()
Clone()
Scheme()