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

TestIntLeftShift() private method

private TestIntLeftShift ( ) : void
return void
        public virtual void TestIntLeftShift()
        {
            var eight = db.Customers.Where(c => c.CustomerID == "ALFKI").Sum(c => ((c.CustomerID == "ALFKI") ? 1 : 1) << 3);
            AssertValue(8, eight);
        }
NorthwindExecutionTest