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

TestCountPredicate() private method

private TestCountPredicate ( ) : void
return void
        public virtual void TestCountPredicate()
        {
            var count = db.Customers.Count(c => c.City == "London");
            AssertValue(6, count);
        }
NorthwindExecutionTest