Search Results

9
votes

Developer testing vs. QA team testing - What is the right division of work?

It's the difference between "black box" testing (where you know what the code us supposed to do, but not how it works), and "white box" testing (where knowing how it works drives how you test it). …
3
votes

Unit-Testing Databases

The usual solution to external dependencies in unit tests is to use mock objects - which is to say, libraries that mimic the behavior of the real ones against which you are testing. This is not al …