What is the scale for what is considered "good" in terms of code coverage?
Are we talking 70%? 80%? 95%?
Name:
Anonymous2010-07-21 1:25
Code coverage means that you're testing all possible paths for the code to take.
I would focus more on obscure paths. Sometimes it's not about trying to get everything but uncovering strange paths that can cause issues.