< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.QuotaExceededException
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/QuotaExceededException.cs
Line coverage
33%
Covered lines: 2
Uncovered lines: 4
Coverable lines: 6
Total lines: 25
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%110%
.ctor(...)100%11100%
.ctor(...)100%110%

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/QuotaExceededException.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    public class QuotaExceededException : Exception //SystemException
 9    {
 10        public QuotaExceededException()
 011            : base()
 12        {
 013        }
 14
 15        public QuotaExceededException(string message)
 216            : base(message)
 17        {
 218        }
 19
 20        public QuotaExceededException(string message, Exception innerException)
 021            : base(message, innerException)
 22        {
 023        }
 24    }
 25}