NLite.Data.Test.NorthwindExecutionTest.TestIntLeftShift C# (CSharp) Méthode

TestIntLeftShift() private méthode

private TestIntLeftShift ( ) : void
Résultat 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