Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active December 28, 2017 10:31
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
@Test
fun `Test 'Hello' with a simple DSL structure`() {
contract {
request {
path = "/api/hello/Jarno"
method = HttpMethod.GET
headers {
accept("application/json")
}
}
response {
status = HttpStatus.OK
body = """{ "message": "Hi, Jarno!" }"""
}
}.verify(testRestTemplate)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment