Hacker News new | ask | show | jobs
by cagmz 3333 days ago
My tests usually involve common expected/actual cases. Manual testing can uncover "unique" scenarios where my code can break.
1 comments

Manual testing can discover bugs. But the first step toward debugging should be writing an automated test to exercise the manually discovered bug, imho.

That said, bug-driven testing is a separate issue from TDD.