I'd like to use call counts in my tests to see the number calls that I have made to a specific URL and method. This is helpful to do a quick verification that I actually did call a URL or URLs and how many times I called them. It adds two new methods GetTotalCallCount that returns the total call count since the last reset and GetCallCountInfo which returns call counts for specific URL-method combos.
I'd like to use call counts in my tests to see the number calls that I have made to a specific URL and method. This is helpful to do a quick verification that I actually did call a URL or URLs and how many times I called them. It adds two new methods
GetTotalCallCount
that returns the total call count since the last reset andGetCallCountInfo
which returns call counts for specific URL-method combos.