|
|
|
|
|
by snovv_crash
1828 days ago
|
|
I dunno. Working on projects with no tests for me always feels like a complete crapshoot. Any change could have broken some implicit assumption in some module you didn't know depended on it. Even worse is if it's a dynamic language and you don't even have a compiler to do the basic checks. For things like reproducing bugs, in particular, functional tests plus a debugger have been indispensable in seeing how the code actually behaves. Sure, production monitoring is nice. But it really only tells you about high level problems, and there are entire classes of bugs, eg. silently corrupted data, which you'll never see there. |
|