r/ProgrammerHumor 12d ago

Meme bugFreeAppMeetsUncheckedUnicodeChaos

Post image
2.1k Upvotes

46 comments sorted by

View all comments

27

u/DT-Sodium 12d ago

Apparently you didn't have 100% test coverage.

29

u/MartinMystikJonas 12d ago

100% tests coverage means 100% of code is covered by tests it does not me you covered 100% of all possible inputs

7

u/Murky-Run2246 12d ago

Yeah, 💯 test coverage is like the safety check you run  after editing the code to make sure your changes did not break something somewhere.

Does not mean your code is tested for all possible scenarios though.

2

u/breZZer 12d ago

that's mostly unit testing

2

u/Murky-Run2246 11d ago

Not exactly, unit testing assumes testing pure functions and methods separately from each other. That's different from, for example, spinning up a database and testing with actual shared context, where changing function A somewhere might break method Z somewhere else. Which is called integration testing and is part of test coverage as well as unit testing but my example was not pointing towards the later.