Examples of bodyText()


Examples of jodd.http.HttpResponse.bodyText()

  @Test
  public void testDeleteTag() {
    HttpResponse response = HttpRequest
        .get("localhost:8173/tag/delete/123")
        .send();
    assertEquals("delete-Tag{123:jodd}", response.bodyText().trim());
  }

  @Test
  public void testEditTag() {
    HttpResponse response = HttpRequest
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.