vote up 1 vote down star

I'm trying to accomplish a seemingly super simple thing: from my unit test I want to replace the type being resolved with a mock/fake object.

For example: the xml config states that a component of the service IInterface should resolve to ClassA. That's fine, but from my unit test I want the type to resolve to FakeClassA instead. I can't use container.AddComponent for this, since there "is a component already registered for the given key ...".

flag

75% accept rate

1 Answer

vote up 2 vote down

IKernel has a RemoveComponent method.

But for unit tests it's recommended that you don't use the container at all, or if the test setup gets too dense because of dependencies, use an AutoMockingContainer.

Here's another (more updated) implementation.

link|flag
RemoveComponent states "Returns true if the specified component was found and could be removed (i.e. no other component depends on it)". But what if we dont care if something else depends upon it, as we are going to replace it in the next line of code. – crowleym Jun 4 at 11:22
You can't. Removing components from the container is not a normal usage in Windsor. – Mauricio Scheffer Jun 4 at 12:39
Mauricio Scheffer: You have a dead link – Anthony 15 hours ago
@Anthony: thanks, fixed it – Mauricio Scheffer 15 hours ago

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.