0
votes
How has unit testing made your life better ?
I'm a big fan of unit testing, though my tests don't provide complete coverage nowadays... mostly because I'm working on a web site and much of my code just grabs data from the database, manipulate …
0
votes
Are unit tests and acceptance tests enough?
Technically, a full suit of acceptance tests should cover everything. That being said, they're not "enough" for most definitions of enough. By having unit tests and integration tests, you can catch …
0
votes
The value of high level unit tests and mock objects
In general, I consider testing this type of method/command to be ripe for the integration testing level. Specifically, I "unit test" for smaller, low level commands that (generally) don't have side …
0
votes
Unit Testing - how much more time does it really add?
For my programming, I tend to only test that parts of the code that I can't intuitively look at and know it's going to work (which some people will argue isn't enough, but that's neither here nor t …
