Search Results

2
votes

Unit testing DAO, am I doing it right?

What are you testing here? IMHO the only thing important here is your SQL command as there's no specific logic to test in your DAO. Testing init code like "new PostDAO(null)" is usel …
0
votes

Unit Testing: Logging and Dependency Injection

I usually do not unit test logging statements by asserting on what's logged but I check that the code paths taken by my unit tests cover logging statements just to make sure that I don't get an exc …