public void TestSequence() { var products = RepositoryFactory.GetProducts(); var anotherProducts = RepositoryFactory.GetAnotherProducts(); Assert.IsFalse(LilySequence(products, anotherProducts, new luckyCompary())); }
public void TestSequence_item_have_one_not_equal() { var products = RepositoryFactory.GetProducts(); var anotherProducts = RepositoryFactory.GetAnotherProducts(); Assert.False(WithoutLinq.CashSequence(products, anotherProducts, new MyCompareProduct())); Assert.False(products.CashSequence(anotherProducts, new MyCompareProduct())); }