Can I make use of Spring.NET's base classes (a la AbstractDependencyInjectionSpringContextTests) for loading an application context and performing dependency injection using MSTest?
I'm trying to develop transactional scenarios that will ultimately hit a live integration database and rollback. I have a set of base classes that extend from Spring's that perform a bit of initialization necessary on our application platform.
I suppose I can abstract this and use the Before and After hooks, but I'd like to keep it as similar as possible to what we already have and continue to make use of autowired dependency injection.