Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 2.14 KB

File metadata and controls

41 lines (34 loc) · 2.14 KB

Why Testing Is Important

Why people don't want to write tests

  • Boring and tedious to write
  • Time-consuming and expensive
    • (estimates anywhere from 15%-50% of total dev costs)
  • Not a user-facing feature
  • Difficult to define what "enough" tests looks like
  • If there's a QA team, it can make devs defensive
  • Bugs will still happen

Why do it

  • Bugs have consequences, and sometimes, they even cause people to get hurt
  • Issues erode user trust in the software
    • If you don't currently have competitors, that can change quickly
  • Bug fixes take longer than testing and mess up timelines since it is unplanned work. It's ultimately more expensive.
  • Tests help enforce code quality standards.

Convincing people