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

TestStringIndexOf() private method

private TestStringIndexOf ( ) : void
return void
        public virtual void TestStringIndexOf()
        {
            var n = db.Customers.Where(c => c.CustomerID == "ALFKI").Sum(c => c.ContactName.IndexOf("ar"));
            AssertValue(1, n);
        }
NorthwindExecutionTest