How Much Testing is Enough?

Learn about how much testing you should implement in your project.

We'll cover the following...

A question many project teams I’ve been part of couldn’t answer is how much testing we should do. Is it enough if our tests cover 80% of our lines of code? Should it be higher than that?

Line coverage

Line coverage is a bad metric to measure test success. Any goal other than 100% is completely meaningless because important parts of the codebase might not be covered at ...