Files
WireMock.Net/examples/WireMock.Net.Console.NET5/__admin/mappings/BodyAsFileExample.json
Stef Heyenrath 37d81aabad .NET 5 (#543)
2020-11-28 11:03:55 +01:00

22 lines
503 B
JSON

{
"Request": {
"Path": {
"Matchers": [
{
"Name": "WildcardMatcher",
"Pattern": "/bodyasfilexmltest",
"IgnoreCase": false
}
]
},
"Methods": [
"get"
]
},
"Response": {
"StatusCode": 200,
"Headers": {"Content-Type": "application/xml"},
"BodyAsFile": "MyXmlResponse.xml",
"UseTransformer": false
}
}