< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.Description.DataContractSerializerMessageContractImporter
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Description/DataContractSerializerMessageContractImporter.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 19
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
.cctor()100%11100%

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Description/DataContractSerializerMessageContractImporter.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.Xml;
 5
 6namespace CoreWCF.Description
 7{
 8    internal class DataContractSerializerMessageContractImporter
 9    {
 10        internal const string GenericMessageSchemaTypeName = "MessageBody";
 11        internal const string GenericMessageSchemaTypeNamespace = "http://schemas.microsoft.com/Message";
 12        private const string StreamBodySchemaTypeName = "StreamBody";
 13        private const string StreamBodySchemaTypeNamespace = GenericMessageSchemaTypeNamespace;
 14
 115        internal static XmlQualifiedName GenericMessageTypeName = new XmlQualifiedName(GenericMessageSchemaTypeName, Gen
 116        internal static XmlQualifiedName StreamBodyTypeName = new XmlQualifiedName(StreamBodySchemaTypeName, StreamBodyS
 17
 18    }
 19}

Methods/Properties

.cctor()