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

TestReverse() private method

private TestReverse ( ) : void
return void
        public virtual void TestReverse()
        {
            var list = db.Customers.OrderBy(c => c.ContactName).Reverse().ToList();
            AssertValue(91, list.Count);
            AssertValue("WOLZA", list[0].CustomerID);
            AssertValue("ROMEY", list[90].CustomerID);
        }
NorthwindExecutionTest