mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-11 21:10:32 +01:00
Partial mapping #48
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @alastairtree on GitHub (Nov 16, 2017).
Originally assigned to: @StefH on GitHub.
Great library, thanks! I cant see any docs/explanation on the "AllowPartialMapping" option? Have I missed them? What does it do?
@alastairtree commented on GitHub (Nov 16, 2017):
From the looks of the code partail mapping enabled changes the behavior when a request is received. By default only the first exactly matching request matcher with the highest priority is selected to respond to the request. With partial mapping enabled then a matcher that does not exactly match can still pick up the request based on a 'closest match' type algorithm. Is that the gist of it? If so an update to the docs would be appreciated.
Thanks
@StefH commented on GitHub (Nov 18, 2017):
See https://github.com/WireMock-Net/WireMock.Net/wiki/Settings
Is this clear?
@alastairtree commented on GitHub (Nov 18, 2017):
Perfect thanks.