Habits Quote by Andrew Hunt
““Don't gloss over a routine or piece of code involved in the bug because you "know" it works. Prove it. Prove it in this context, with this data, with these boundary conditions.””
About This Quote
Do not assume code works; verify it with data and boundary conditions to avoid hidden bugs.
In simple terms: Always test code with data and limits.
Validate assumptions with concrete evidence.
Themes
Mood
Type
When to use this quote
- code reviews
- automated testing
- deployment pipelines
Key Concepts
Questions to Reflect On
- What assumptions do you need to test?
- How do you define appropriate boundary conditions?
Testing can be time‑consuming.