Exemplo n.º 1
0
        public void TestAggregateWhenThrowingExceptions()
        {
            int[] array = null;
            Func <int, int, int> myFunc = (x, z) => x * z;

            Assert.Throws <ArgumentNullException>(() => LINQFunctions.Aggregate(array, 5, (a, b) => myFunc(a, b)));
        }
Exemplo n.º 2
0
        public void TestAggregate()
        {
            int[] array = { 1, 2, 4, 5 };

            Func <int, int, int> myFunc = (x, z) => x * z;

            var result = LINQFunctions.Aggregate(array, 5, (a, b) => myFunc(a, b));

            Assert.Equal(200, result);
        }