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

TestLast() private method

private TestLast ( ) : void
return void
        public virtual void TestLast()
        {
            var last = db.Customers.OrderBy(c => c.ContactName).Last();
            Assert.AreNotEqual(null, last);
            AssertValue("WOLZA", last.CustomerID);
        }
NorthwindExecutionTest