When runnning tests in PlayFramework, you expect the database to be cleared before every test (for true isolation) and evolutions to be played, but somehow that doesn't seem to be the case.
How can I clear the database before running every test in general, or if there is no general approach, when using anorm?
EDIT : I already know the H2 - MODE for testing even with database specifics but as said in comment below, what I want is have the same testing and production database setup. In order to do that, I need to be able to reload my DB before each test.