|
|
|
|
|
by jasonm23
3505 days ago
|
|
Since you're actually writing tests (you say you're doing checks, which are effectively tests.) Why not just add them to a test suite? You win twice, or more. You get proof of the assertions you're making to your peers, you get regression tests to cover your code when it's being refactored, you also get to strongly document the intent of your code so that others can know it deeply, relatively quickly. See devs like yourself who claim they aren't writing tests, but in essence they are, the only difference is they're not persisting their tests, and losing their value beyond initial validation of the correctness of the code. |
|