Introduction to Responsible Testing
Explore the concept of responsible testing by understanding the strengths of property-based and unit testing. This lesson teaches you how to design tests for a birthday greeting application to ensure minimal test modification as requirements evolve, focusing solely on unit tests without side effects.
We'll cover the following...
We'll cover the following...
What is responsible testing?
Understanding when and where properties work best is important for responsible testing, and that is what we are going to learn in this chapter.
Throughout the chapter, we’ll take on a practical project based on the birthday greeting “kata” by Matteo Vaccari. This exercise asks us to organize unit tests for a little application in a manner such that as few ...