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

TestSingleOrDefaultNoMatches() private method

private TestSingleOrDefaultNoMatches ( ) : void
return void
        public virtual void TestSingleOrDefaultNoMatches()
        {
            var single = db.Customers.SingleOrDefault(c => c.CustomerID == "SpongeBob");
            AssertValue(null, single);
        }
NorthwindExecutionTest