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

TestIntSubtract() private method

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