Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / C#

Introducing the LinFu Framework, Part IV: Simple.IOC – The Five Minute Inversion of Control Container

Rate me:
Please Sign up or sign in to vote.
4.89/5 (25 votes)
15 Nov 2007LGPL312 min read 74.3K   626   41  
A fully functional, yet minimalistic inversion of control container
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
using NUnit.Framework;

namespace LinFu.Delegates.Tests
{
    [TestFixture]
    public class DelegateTests
    {
        [Test]
        public void ShouldBeAbleToCreateCustomDelegate()
        {
            TestClass test = new TestClass();
            Type returnType = typeof (void);
            Type[] parameterTypes = new Type[] {typeof (string)};
            CustomDelegate methodBody = delegate(object[] args)
                                            {
                                                Console.WriteLine("Hello, {0}!", args[0]);
                                                test.TargetMethod();
                                                return null;
                                            };

            object[] arguments = new object[] {"World!"};

            Type delegateType = DelegateFactory.DefineDelegateType("__Anonymous", returnType, parameterTypes);
            MulticastDelegate target = DelegateFactory.DefineDelegate(delegateType, methodBody, returnType, parameterTypes);
            target.DynamicInvoke(arguments);

            Assert.IsTrue(test.CallCount == 1);
        }
        [Test]
        public void ShouldBindToNonStaticMethod()
        {
            MethodInfo targetMethod = typeof(TestClass).GetMethod("TargetMethod");
            TestClass instance = new TestClass();
            MulticastDelegate result = DelegateFactory.DefineDelegate(instance, targetMethod);
            result.DynamicInvoke();

            Assert.IsTrue(instance.CallCount == 1);
        }
        [Test]
        public void ShouldBindToStaticMethod()
        {
            MethodInfo targetMethod = typeof(TestClass).GetMethod("StaticTargetMethod", 
                BindingFlags.Static | BindingFlags.Public);

            MulticastDelegate result = DelegateFactory.DefineDelegate(null, targetMethod);
            result.DynamicInvoke();

            Assert.IsTrue(TestClass.StaticCallCount == 1);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) Readify
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions