Example :
Mock in background :
/test/S(.)/path/C(.)
Mock in the test :
/test/S1/path/C2
If "Assert has received" in test, request matching will be test only with /test/S(.)/path/C(.) path because we do a finfFirst in MockFaster retrieveRequestResponses.
=> Solution, check fo each path and not only first.
Example : Mock in background : /test/S(.)/path/C(.)
Mock in the test : /test/S1/path/C2
If "Assert has received" in test, request matching will be test only with /test/S(.)/path/C(.) path because we do a finfFirst in MockFaster retrieveRequestResponses.
=> Solution, check fo each path and not only first.