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

TestSinglePredicate() private method

private TestSinglePredicate ( ) : void
return void
        public virtual void TestSinglePredicate()
        {
            var single = db.Customers.Single(c => c.CustomerID == "ALFKI");
            Assert.AreNotEqual(null, single);
            AssertValue("ALFKI", single.CustomerID);
        }
NorthwindExecutionTest