Created
February 20, 2013 09:09
-
-
Save hstaudacher/4994161 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@HttpTest( method = Method.POST, path = "/", file = "YOUR_JSON_FILE", type = MediaType.APPLICATION_JSON ) | |
public void testPost() { | |
String repsonseBody = response.getBody(); | |
MyJsonParser.parse( responseBody ); | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
is there any way to provide JSON file created dynamically, rathe than statically providing the file?