Applications Quote by Anonymous
““Putting It All together Most applications only have a small number of critical user paths. For an eCommerce application, they might be: Browsing the product catalog Buying a product Creating an account Logging in (including password reset) Checking order history As long as those five things are working, the developers don’t need to be woken up in the middle of the night to fix the application code. (Ops is another story.) Those functions can likely be covered with five coarse-grained, Capybara tests that run in under two minutes total.””
About This Quote
Source Article: Software Testing Best Practices, 2020
Key user flows should be covered by a few robust tests to avoid nightly alerts.
In simple terms: Test critical paths with few tests.
Focus on essential user journeys.
Themes
Mood
Type
When to use this quote
- eCommerce checkout
- user login
- order history
- password reset
- catalog browsing
Key Concepts
Questions to Reflect On
- Which user paths are truly critical?
- How often should tests be reviewed?
Complex systems may need more granular testing.