Hi,
A common pattern I use is to have a function for the mocking setup, as a lot of this is repeated. Each test will call the expectation setup fn with different parameters.
The issue comes when multiple setup/executes are used in a single test.
When an expectation fails - the test reports the failures at the line inside the generic function. The values often give no reference to which part of the test failed
Is there any way to add a marker or something, so I can know which part of the test actually did the expectation setup?