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

TestIntNotEqual() private method

private TestIntNotEqual ( ) : void
return void
        public virtual void TestIntNotEqual()
        {
            var alfki = db.Customers.SingleOrDefault(c => c.CustomerID == "ALFKI" && (c.CustomerID == "ALFKI" ? 2 : 2) != 1);
            var alfkiN = db.Customers.SingleOrDefault(c => c.CustomerID == "ALFKI" && (c.CustomerID == "ALFKI" ? 2 : 2) != 2);
            Assert.AreNotEqual(null, alfki);
            AssertValue(null, alfkiN);
        }
NorthwindExecutionTest