-
Notifications
You must be signed in to change notification settings - Fork 2
Quickstart
Alexander Held edited this page Oct 10, 2019
·
3 revisions
MockServerSetup.Expectations
.OnHandling(HttpMethod.Delete,
request =>
request
.WithPath("post")
.EnableEncryption()
.KeepConnectionAlive()
)
.RespondWith(HttpStatusCode.Accepted,
response => response
.WithBody(content => content.WithJson(""))
)
.And
.OnHandling(HttpMethod.Delete,
request =>
request
.WithPath("post")
.EnableEncryption()
.KeepConnectionAlive()
)
.RespondWith(HttpStatusCode.Accepted,
response => response
.WithBody(content => content.WithJson(""))
).Setup();