In out project we would like to use Spring integration test package - org.springframework.test.

It works fine, but i don't like tests to be in the same project as managers and business services.To be more specific: We are using Ration Software Architect (Eclipse IDE) and by project i mean Dynamic Web Project.
Is it possible to configure integration test from different project ?

In all the past projects we were using EJB container so we did not have the same problem since server was holding all the JNDI's and transaction configuration, security config. and all the other important stuff.But with Spring the applicationContext.xml (WebApplicationContext) is not accessible within different Dynamic Web Project. Or is it ?

BTW: This is our first Spring project...

Thanks