@Rule
+public final RestDocumentation restDocumentation = new RestDocumentation("build/snippets");
+
+@Test
+public void addAPetToTheStore() throws Exception {
+ this.mockMvc.perform(post("/pets/").content(createPet())
+ .contentType(MediaType.APPLICATION_JSON))
+ .andDo(document("addPet", preprocessResponse(prettyPrint())))
+ .andExpect(status().isOk());
+}
+