|
|
|
|
|
by HarHarVeryFunny
354 days ago
|
|
You can test every line of code in your program, but how many people actually do? It's one thing if you are just creating a throwaway prototype, or something so simple that you will naturally exercise 100% of the code when testing it, but when you start building anything non-trivial it's easy to have many code paths/flows that are rarely executed or tested. Maybe you wrote unit tests for all the obvious corner cases, but did you consider the code correctness when conditions A, then B, then C ... occurs?). Even 100% code coverage (every line of code tested) isn't going to help you there. |
|
In my mind, that's what separates genuinely excellent professional programmers from everybody else.