Summary

Class:FakeXrmEasy.Models.TypedConditionExpression
Assembly:FakeXrmEasy
File(s):C:\code\jordimontana82\fake-xrm-easy\FakeXrmEasy.Shared\Models\TypedConditionExpression.cs
Covered lines:8
Uncovered lines:0
Coverable lines:8
Total lines:25
Line coverage:100%

Metrics

MethodCyclomatic ComplexitySequence CoverageBranch Coverage
.ctor(...)1100100

File(s)

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

#LineLine coverage
 1using Microsoft.Xrm.Sdk.Query;
 2using System;
 3
 4namespace FakeXrmEasy.Models
 5{
 6    /// <summary>
 7    /// A condition expression with a decorated type
 8    /// </summary>
 9    public class TypedConditionExpression
 10    {
 2612311        public ConditionExpression CondExpression { get; set; }
 1196212        public Type AttributeType { get; set; }
 13
 14        /// <summary>
 15        /// True if the condition came from a left outer join, in which case should be applied only if not null
 16        /// </summary>
 909017        public bool IsOuter { get; set; }
 18
 306919        public TypedConditionExpression(ConditionExpression c)
 306920        {
 306921            IsOuter = false;
 306922            CondExpression = c;
 306923        }
 24    }
 25}