Beispiel #1
0
        public void Test2(int expected, int v1, int v2)
        {
            Func <int, int, int> f = (x, y) => x << y;

            f = f.Memoize();

            Assert.Equal(expected, f(v1, v2));
        }
Beispiel #2
0
        public void Test3(int expected, int v1, int v2, int v3)
        {
            Func <int, int, int, int> f = (x, y, z) => (x << y) + z;

            f = f.Memoize();

            Assert.Equal(expected, f(v1, v2, v3));
        }
Beispiel #3
0
        public void Test1(int expected, int v1)
        {
            Func <int, int> f = (x) => x + 1;

            f = f.Memoize();

            Assert.Equal(expected, f(v1));
            Assert.Equal(expected, f(v1));
        }