I know unit testing is important - everbody knows that. But in most projects that I see there is almost no unit testing (except open source frameworks), but a lot of human acceptance testing.
What's your experience?
|
1
|
I know unit testing is important - everbody knows that. But in most projects that I see there is almost no unit testing (except open source frameworks), but a lot of human acceptance testing. What's your experience? |
|||
|
|
|
|
In the projects I've worked on it's varied widely, from strict unit testing on every aspect to virtually no tests and all humans poking at it. I think it really depends on the manager, the project lead and the overall purpose of the application. |
|||
|
|
|
|
I use MSTest unit tests for my lowest-level functions; I need to add more, however, for higher-level components. Later this week I'm planning on modifying my build script to automatically run all unit tests after a build. |
|||
|
|