I am new to Cucumber and BDD. I was wondering if there is a good way to specify a condition that must be checked after every step. For example, suppose I want to make sure a particular variable x is equal to 5 after every step. I do not want to write the scenario like this:
When something happens
Then x should be 5
When something else happens
Then x should be 5
And so on...
Is there a less repetitive way of accomplishing this? I am aware of Background and hooks, but these seem to be for setting up the environment rather than verification.