NLite.Data.Test.NorthwindExecutionTest.TestIntDivide C# (CSharp) Method

TestIntDivide() private method

private TestIntDivide ( ) : void
return void
        public virtual void TestIntDivide()
        {
            var one = db.Customers.Where(c => c.CustomerID == "ALFKI").Sum(c => ((c.CustomerID == "ALFKI") ? 3 : 3) / 2);
            AssertValue(1, one);
        }
NorthwindExecutionTest