Reputation: 13558
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.
Upvotes: 1
Views: 4412
Reputation: 2028
I would rather use
@Transactional
anotation above method declaration. It runs rollback after each test. It works fine for me.
For example:
@Test
@Transactional
public void simpleTest(){
// your logic here
}
Upvotes: 0
Reputation: 9971
Several possible approaches:
try{} finally{}
block where the finally rolls back the transaction. Upvotes: 6