Monday, January 31, 2022

Test and Code: 178: The Five Factors of Automated Software Testing

"There are five practical reasons that we write tests. Whether we realize it or not, our personal testing philosophy is based on how we judge the relative importance of these reasons." - Sarah Mei

This episode discusses the factors.

Sarah's order:

  1. Verify the code is working correctly
  2. Prevent future regressions
  3. Document the code’s behavior
  4. Provide design guidance
  5. Support refactoring

Brian's order:

  1. Verify the code is working correctly
  2. Prevent future regressions
  3. Support refactoring
  4. Provide design guidance
  5. Document the code’s behavior

The episode includes reasons why I've re-ordered them.

Sponsored By:

Support Test & Code in Python

Links:

<p>&quot;There are five practical reasons that we write tests. Whether we realize it or not, our personal testing philosophy is based on how we judge the relative importance of these reasons.&quot; - Sarah Mei</p> <p>This episode discusses the factors.</p> <p>Sarah&#39;s order:</p> <ol> <li>Verify the code is working correctly</li> <li>Prevent future regressions</li> <li>Document the code’s behavior</li> <li>Provide design guidance</li> <li>Support refactoring</li> </ol> <p>Brian&#39;s order:</p> <ol> <li>Verify the code is working correctly</li> <li>Prevent future regressions</li> <li>Support refactoring</li> <li>Provide design guidance</li> <li>Document the code’s behavior</li> </ol> <p>The episode includes reasons why I&#39;ve re-ordered them.</p><p>Sponsored By:</p><ul><li><a href="https://ift.tt/YiqCze6lr" rel="nofollow">Sauce Labs</a>: <a href="https://ift.tt/YiqCze6lr" rel="nofollow">Visit saucelabs.com/testbetter for more information and a free trial. Sauce Labs. Test Continuously. Test Smarter. Develop with confidence.</a></li><li><a href="https://ift.tt/DsiQ6Bc8S" rel="nofollow">PyCharm Professional</a>: <a href="https://ift.tt/DsiQ6Bc8S" rel="nofollow">Try PyCharm Pro for 4 months and learn how PyCharm will save you time.</a> Promo Code: TESTANDCODE22</li></ul><p><a href="https://ift.tt/pABqSD2Fb" rel="payment">Support Test & Code in Python</a></p><p>Links:</p><ul><li><a href="https://ift.tt/OG0KFBux4" title="Five Factor Testing - Sarah Mei" rel="nofollow">Five Factor Testing - Sarah Mei</a></li></ul>

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...