After I run a bunch of Selenium (jUnit4) tests using Maven, I'd like to do a database clean-up (remove things they inserted etc). It's an older project running on Tapestry/Spring/Hibernate and a legacy database. I'd like to do the clean up in an @After
annotated method - but injecting of DAO's/Managers/SessionFactory doesn't work.
The testing goes like this: I run (mvn jetty:run-war
) the app in one console, and start the testing in another console (mvn test
) - it accesses the app on localhost:8080.