mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-11 03:37:11 +02:00
1.0.4.1 (#153)
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
# 1.0.4.1 (25 June 2018)
|
||||||
|
|
||||||
|
- [#153](https://github.com/WireMock-Net/WireMock.Net/issues/153) - Feature: Add JsonMatcher to support Json mapping
|
||||||
|
|
||||||
|
Commits: f61a814ab5...2eff243a96
|
||||||
|
|
||||||
|
|
||||||
# 1.0.4.0 (23 June 2018)
|
# 1.0.4.0 (23 June 2018)
|
||||||
|
|
||||||
- [#151](https://github.com/WireMock-Net/WireMock.Net/issues/151) - Feature: Add logging of incoming request and body for tracability
|
- [#151](https://github.com/WireMock-Net/WireMock.Net/issues/151) - Feature: Add logging of incoming request and body for tracability
|
||||||
|
|||||||
@@ -38,6 +38,13 @@ namespace WireMock.Net.ConsoleApplication
|
|||||||
|
|
||||||
server.AllowPartialMapping();
|
server.AllowPartialMapping();
|
||||||
|
|
||||||
|
server
|
||||||
|
.Given(Request.Create()
|
||||||
|
.WithPath("/xpath").UsingPost()
|
||||||
|
.WithBody(new XPathMatcher("/todo-list[count(todo-item) = 3]"))
|
||||||
|
)
|
||||||
|
.RespondWith(Response.Create().WithBody("XPathMatcher!"));
|
||||||
|
|
||||||
server
|
server
|
||||||
.Given(Request
|
.Given(Request
|
||||||
.Create()
|
.Create()
|
||||||
|
|||||||
Reference in New Issue
Block a user