Hi guys, I am promoting contract testing in my com...
# general
f
Hi guys, I am promoting contract testing in my company, and need more strong evidence to persuade other engineers to adopt it. Can someone share some context and scenarios about why you used contract testing, and what pain point it resolved in your company? Really appreciate. 🙏
y
j
From my experience, it stopped developers from making changes that weren’t backward compatible so for example, if some fields in the providing service needed to be renamed, they were forced to first add new fields but leave existing fields in place to maintain support. Once the consumer has been updated to look for just the new fields then they can be removed from the providing service. The benefit of the contract tests being it’s easy to identify if needed changes are going to break existing relationships.