You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prevents subsequent requests to the same setup from receiving already-disposed instances. This can happen either by the code under test wrapping the response in a using or by HttpClient's GetStringAsync and GetByteArrayAsync which do the same.
Streams passed to ReturnsResponse are now wrapped to allow multiple requests/setups to read from the same stream without interfering with each other (if seekable, such as MemoryStream).
The RequestMessage property on HttpResponseMessage is now correctly populated (except SetupRequestSequence).