Run all JUnit tests indepentently in Eclipse, reloading Spring context each time
问题 Goal: Find a way in Eclipse to execute all the tests in a JUnit class which reloads the Spring context before each test, instead of just once. Scenario: I inherited DAO test suite that uses an HSQL in-memory database which gets initialized with some sample data on context load. While running the tests, I noticed if the whole class is executed, all the tests pass. But specific test methods fail when executed individually. Clearly, the tests are not independent and early tests are altering the