Re: Help needed from testers



v.vansiy wrote:

How is unit testing done in the real world?

Pure unit testing, like clean room?

Or just-good-enough low-level tests?

Does unit testers refer to any unit testing error taxonomies or error
categories when unit testing their code?

Pure unit testing means a test failure implicates only one unit. Nobody
needs that level of detail if you run the tests as often as possible.

You should have test case for everything that must work (and you should
erase everything that doesn't need to). I'm sure someone has though of error
taxonomies for this technique, but go for coverage first.

What are the most commonly
used one these days and where I can find more information about them?

Google "test driven development".

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!


.