< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.Security.SupportingTokenProviderSpecification
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Security/SupportingTokenProviderSpecification.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 9
Coverable lines: 9
Total lines: 25
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 4
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor(...)0%440%

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Security/SupportingTokenProviderSpecification.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.IdentityModel.Selectors;
 5using CoreWCF.Security.Tokens;
 6
 7namespace CoreWCF.Security
 8{
 9    public class SupportingTokenProviderSpecification
 10    {
 011        public SupportingTokenProviderSpecification(SecurityTokenProvider tokenProvider, SecurityTokenAttachmentMode att
 12        {
 013            SecurityTokenAttachmentModeHelper.Validate(attachmentMode);
 014            TokenProvider = tokenProvider ?? throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof(tok
 015            SecurityTokenAttachmentMode = attachmentMode;
 016            TokenParameters = tokenParameters ?? throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof
 017        }
 18
 019        public SecurityTokenProvider TokenProvider { get; }
 20
 021        public SecurityTokenAttachmentMode SecurityTokenAttachmentMode { get; }
 22
 023        public SecurityTokenParameters TokenParameters { get; }
 24    }
 25}