I\'ve started to discovered Mockito library and there is a question for which I didn\'t find the proper answer.
If I have for example such method in my UserDAO class tha
A tool like DBUnit combined with JUnit could help you testing your DAOs with the database. DBUnit helps you inserting test data to the database before your UnitTest and compare the data in the database with your expectation after the test.