Skip to content

Commit

Permalink
Drop logging added in Dev UI PR
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Feb 21, 2023
1 parent e0553a1 commit f499633
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,18 @@ public class ClasspathResourceTestCase {
public void testRootResource() {

RestAssured.get("/other/hello.txt").then()
.log().all()
.statusCode(200)
.body(is("hello"));

RestAssured.get("/stuff.html").then()
.log().all()
.statusCode(200)
.body(is("stuff"));

RestAssured.get("/index.html").then()
.log().all()
.statusCode(200)
.body(is("index"));

RestAssured.get("/").then()
.log().all()
.statusCode(200)
.body(is("index"));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,14 @@ public class StaticFileWithResourcesHttpRootTest {
public void test() {

RestAssured.get("/web/index.html").then()
.log().all()
.statusCode(200)
.body(containsString("<h1>Hello</h1>"));

RestAssured.get("/lorem.txt").then()
.log().all()
.statusCode(200)
.body(containsString("Lorem"));

RestAssured.get("/").then()
.log().all()
.statusCode(200)
.body(containsString("Root Resource"));
}
Expand Down

0 comments on commit f499633

Please sign in to comment.