this post was submitted on 08 Jun 2024
719 points (97.1% liked)

Programmer Humor

31163 readers
1941 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 37 points 2 weeks ago (2 children)

Documentation and testing are fundamental parts of writing code.

[–] iarigby 8 points 2 weeks ago (1 children)

Also, tests ARE THE code, and equally important too! However so many people make the mistake of writing tests after the function, when the benefit is less immediate. They also have the illusion that they are done and have to do extra work. And since they didn’t write the test first, they most likely wasted a ton of time and energy on extra work of testing changes manually

[–] lightnegative 4 points 2 weeks ago

I disagree unless the tests are reasonably high level.

Half the time the thing you're testing is so poorly defined that the only way to tighten that definition is to iterate.

In this sense, you're wasting time writing tests until you've iterated enough to have something worth testing.

At that point, a couple of regression tests offer the biggest bang for buck so you can sanity check things are still working when you move on to another function and forget all about this one