Was quality truly built in???

Answer: Probably no — quality was not truly built in.

The team may have done some testing, but the result shows that quality was not built into the full process.

Why?

Because:

EvidenceWhat it suggests
Checkout crashes 40% of the timeCritical functionality was not properly tested.
Password reset failsImportant user flow was missed.
Buttons do not respond on mobileMobile/responsive testing was missing.
All stories were marked DoneThe Definition of Done was probably weak.
Automated tests passedThe automated tests did not cover the right scenarios.

Teaching explanation

You can tell students:

“If all stories were marked Done and automated tests passed, but customers still experience major failures, then the team did not build quality deeply enough into the process. They may have tested something, but not the right things.”

What was missing?

Likely missing items:

Missing quality practiceExample
Strong Definition of DoneStory cannot be Done unless tested on desktop and mobile.
Better acceptance criteriaCheckout must work successfully for valid payment, failed payment, and mobile checkout.
End-to-end testingTest the complete user journey: login → order food → checkout → confirmation.
Mobile testingButtons and screens must work on common mobile screen sizes.
Regression testingExisting features like password reset must still work after new changes.
Exploratory testingHumans try unusual cases that automation may miss.

Best short classroom answer

No, quality was not truly built in. The team had a “Done” label and automated tests, but the tests and DoD were incomplete. Built-in quality means the team prevents defects through strong acceptance criteria, testing, review, mobile checks, and Definition of Done before the work is released.

A good discussion follow-up:

“What should be added to the Definition of Done so this problem does not happen again?”

From AI Tools as is

Leave a Reply