use of com.baeldung.unirest.Article in project tutorials by eugenp.
the class HttpClientTest method givenArticleWhenCreatedThenCorrect.
@Test
public void givenArticleWhenCreatedThenCorrect() throws UnirestException {
Article article = new Article("ID1213", "Guide to Rest", "baeldung");
HttpResponse<JsonNode> jsonResponse = Unirest.post("http://www.mocky.io/v2/5a9ce7663100006800ab515d").body(article).asJson();
assertEquals(201, jsonResponse.getStatus());
}