mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-18 15:10:17 +02:00
33 lines
791 B
JSON
33 lines
791 B
JSON
{
|
|
"Request": {
|
|
"Path": {
|
|
"Matchers": [
|
|
{
|
|
"Name": "WildcardMatcher",
|
|
"Patterns": [ "/static/mapping", "/static/mapping2" ]
|
|
}
|
|
]
|
|
},
|
|
"Body": {
|
|
"Matcher": {
|
|
"Name": "JsonMatcher",
|
|
"Pattern": {
|
|
"post1": "value 1",
|
|
"post2": "value 2"
|
|
},
|
|
"IgnoreCase": true
|
|
}
|
|
},
|
|
"Methods": [
|
|
"get",
|
|
"post"
|
|
]
|
|
},
|
|
"Response": {
|
|
"BodyAsJson": { "body": "static mapping" },
|
|
"Headers": {
|
|
"Content-Type": "application/json",
|
|
"Test-X": [ "test 1", "test 2" ]
|
|
}
|
|
}
|
|
} |