Rename classes

This commit is contained in:
Stef Heyenrath
2017-01-18 07:42:05 +01:00
parent c0872995b0
commit 8f02e99a00
23 changed files with 142 additions and 147 deletions

View File

@@ -19,12 +19,12 @@ namespace WireMock.Net.ConsoleApplication
server
.Given(
RequestBuilder
Request
.WithUrl("/*")
.UsingGet()
)
.RespondWith(
ResponseBuilder
Response
.WithStatusCode(200)
.WithHeader("Content-Type", "application/json")
.WithBody(@"{ ""msg"": ""Hello world!""}")