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

TestIntAdd() private method

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