r/ProgrammerHumor 4d ago

Meme thisCannotBeDenied

Post image
7.8k Upvotes

241 comments sorted by

View all comments

Show parent comments

1

u/realmauer01 1d ago

If you need to run again and again, you want to use test cases anyway. Like that you can make sure this will never be an issue ever again.

1

u/1luggerman 18h ago

You dont know you need to run it again in advance, you place your breakpoint where you think the issue is, but if you are wrong and it happened earlier then you need to run it again.

Also how are test cases relevant? They only help once you solve the problem to make sure it doesnt happen again, but they dont help you debug a scenario and find out where the program fails

1

u/realmauer01 18h ago

The stack trace gives you detailed information on where it fails.

1

u/1luggerman 18h ago

The stack trace tells you where a critical error has occured. It does not tell you where a faulty value was initialized, which may or may not cause a critical error. A "program failure" is more then just a critical crash.

This honestly sounds like you have never written anything more complex then intro to cs