Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 20, 2022 10:36 pm GMT

You dont need 100% coverage.

Before thinking about going for the sweet 100% do you, at least, have enough tests?
Getting 100% for any feature you have is awesome, dont get me wrong. But if you dont have enough tests for most of your application, then you dont need that 100%.

Cover all the happy paths first

The least your application should do is work as you intended when you use it as intended.

This means covering all your happy paths first.

Cover the core features

Your core features, also those more critical, are bound to give you more grief.

Being important to you, you probably want 100% for them first.

Out of everything, your most critical places should have 100%. (And probably some more, because of possible problems you can have and edge cases that will give you redundancy.)

Cover the main error paths

What happens when someone tries a wrong password or if your API returns that they arent authorized to do something?

There are many expected errors you can have and you should also cover those paths.

Got a bug? Replicate on tests!

For bugs, it doesnt matter if youre already covered (and if you got a bug, then you probably arent covered).

Got a bug, replicate it in a test and never bother about it again.

New features can start at 100% (or almost it)

Depending on where you are in testing everything if you started to commit yourself to testing your application, its a no-brainer that new features can start with already 100%, or as close as possible.

Go for 100%?

Before getting to 100%, and you probably dont even need that 100%, you probably will need to check if those tests you already have are actually covering what your coverage says it does.

You can easily cover 100%, but if you keep having bugs and other problems even on tested grounds, then those 100% might not be worth anything and you should improve if what youre testing is actually testing what you want.

Beyond 100% (even without 100%)

By now, you would have a high percentage, maybe even in the ninety percent range.

So you have a choice because climbing the last percent to 100% is costly and might not be worth it, you can think about adding redundancy or doing other types of testing.

You probably would have lots of units and integration testing, so now you could think about e2e tests, maybe load and other types of stress testing, or how about some mutation tests?

Cover Photo by Clay Banks on Unsplash


Original Link: https://dev.to/noriller/you-dont-need-100-coverage-412p

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To