< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.EnableCoreWCFOperationInvokerGeneratorAttribute
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/EnableCoreWCFOperationInvokerGeneratorAttribute.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 4
Coverable lines: 4
Total lines: 18
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%

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/EnableCoreWCFOperationInvokerGeneratorAttribute.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    [AttributeUsage(AttributeTargets.Assembly)]
 9    public sealed class EnableCoreWCFOperationInvokerGeneratorAttribute : Attribute
 10    {
 011        public EnableCoreWCFOperationInvokerGeneratorAttribute(bool value)
 12        {
 013            Value = value;
 014        }
 15
 016        public bool Value { get; }
 17    }
 18}

Methods/Properties

.ctor(System.Boolean)
Value()