Exemplo n.º 1
0
        public void FilterTestWithInappropriateValues()
        {
            List <int> result = ListFunction.Filter(new List <int>()
            {
                -53, 11, 777
            }, x => (x % 2 == 0));

            Assert.AreEqual(new List <int>(), result);
        }
Exemplo n.º 2
0
        public void FilterTest1()
        {
            List <int> result = ListFunction.Filter(new List <int>()
            {
                -50, 11, 1400
            }, x => (x == 11));

            Assert.AreEqual(new List <int>()
            {
                11
            }, result);
        }