开发者

Registering NUnit DynamicMock Instances in a UnityContainer

开发者 https://www.devze.com 2022-12-26 01:37 出处:网络
I\'m somewhat new to Unity and dependency injection. I\'m trying to write a unit test that goes something like this:

I'm somewhat new to Unity and dependency injection. I'm trying to write a unit test that goes something like this:

[Test]
public void Test()
{
    UnityContainer container = new UnityContainer();
    DynamicMock myMock = new DynamicMock(typeof(IMyInterface));
    container.RegisterInstance(typeof(IMyInterface), myMock.MockInstance);  //Error here

    // Continue unit test...
}

When this test e开发者_Python百科xecutes, the container throws an ArgumentNullException inside the RegisterInstance method with the message Value cannot be null. Parameter name: assignmentValueType.

The top line of the stack trace is at Microsoft.Practices.Unity.Utility.Guard.TypeIsAssignable(Type assignmentTargetType, Type assignmentValueType, String argumentName).

Why can't I register a MockInstance with the UnityContainer, and how do I work around this?


I'm not seeing this. I'm using NUnit 2.5.5.10112 and Unity 2.0 (which ships with EntLib, the separate release isn't available just yet).

Update: I just checked with 1.2 and I see your behavior. So this is an issue with 1.2.

namespace UnityRepro
{
    public interface IMyInterface
    {
        void Foo();
    }

    public class Class1
    {
        [Fact] 
        public void Test() 
        { 
            UnityContainer container = new UnityContainer(); 
            DynamicMock myMock = new DynamicMock(typeof(IMyInterface)); 
            container.RegisterInstance(typeof(IMyInterface), myMock.MockInstance);  //Error here 

            Assert.NotNull(container.Resolve<IMyInterface>());
        } 
    }
}

Would it be possible for you to update to Unity 2.0? If not I'll try and dig deeper and find out what's really going on. This may be a limitation of 1.2 though.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号