Summary

Class:FakeXrmEasy.PullRequestException
Assembly:FakeXrmEasy
File(s):C:\code\jordimontana82\fake-xrm-easy\FakeXrmEasy.Shared\PullRequestException.cs
Covered lines:6
Uncovered lines:6
Coverable lines:12
Total lines:27
Line coverage:50%

Metrics

MethodCyclomatic ComplexitySequence CoverageBranch Coverage
.ctor(...)1100100
NotImplementedOrganizationRequest(...)1100100
PartiallyNotImplementedOrganizationRequest(...)100
FetchXmlOperatorNotImplemented(...)100

File(s)

C:\code\jordimontana82\fake-xrm-easy\FakeXrmEasy.Shared\PullRequestException.cs

#LineLine coverage
 1using System;
 2
 3namespace FakeXrmEasy
 4{
 5    public class PullRequestException : Exception
 6    {
 7        public PullRequestException(string sMessage) :
 128            base(string.Format("Exception: {0}. This functionality is not available yet. Please consider contributing to
 129        {
 1210        }
 11
 12        public static PullRequestException NotImplementedOrganizationRequest(Type t)
 613        {
 614            return new PullRequestException(string.Format("The organization request type '{0}' is not yet supported... b
 615        }
 16
 17        public static PullRequestException PartiallyNotImplementedOrganizationRequest(Type t, string missingImplementati
 018        {
 019            return new PullRequestException(string.Format("The organization request type '{0}' is not yet fully supporte
 020        }
 21
 22        public static PullRequestException FetchXmlOperatorNotImplemented(string op)
 023        {
 024            return new PullRequestException(string.Format("The fetchxml operator '{0}' is not yet supported... but we DO
 025        }
 26    }
 27}