NUnit integration programmatically with spring

Posted by harkon on Stack Overflow See other posts from Stack Overflow or by harkon
Published on 2010-06-06T15:59:02Z Indexed on 2010/06/06 16:02 UTC
Read the original article Hit count: 268

Hi!

I have a component based architecture framework designed and I use NUnit for isolated testing - okay so far.

Now I want to enable integration tests. Therefore the tests use real implementations of the existing components.

Each element of the component has a life cycle (init, start and stop) and I created a NUnit component. In the start section the Console runner of the NUnit will be executed.

Okay - now if I have a test fixture class in my dlls in the execution path the runner exectues them - fine!

But: And this is crucial! Each to be tested implementation exists so far in the process and I want to use this instances for testing. If I use NUnit runner in the current way each instance will be created twice - and above all: I have a spring container and a implementation registry. Via this registry I can get access to all instances in the processes. But how do I give the test fixture access to the existing registry?

Good: I can start the component architecture framework in the startup of the nunit runner - but this is not what I want.

My guide is the apache Cactus framework (with JUnit and tomcat, JBoss etc.)

Can someone help?

Thanks a lot!


Check: http://cone.codeplex.com

© Stack Overflow or respective owner

Related posts about dependency-injection

Related posts about nunit