Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing flakiness using .json() to check JSON string responses #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ public void testUserController() throws Exception {
request = get("/users/");
mvc.perform(request)
.andExpect(status().isOk())
.andExpect(content().string(equalTo("[{\"id\":1,\"name\":\"测试大师\",\"age\":20}]")));
.andExpect(content().json("[{\"id\":1,\"name\":\"测试大师\",\"age\":20}]"));

// 4、put修改id为1的user
request = put("/users/1")
@@ -61,7 +61,7 @@ public void testUserController() throws Exception {
// 5、get一个id为1的user
request = get("/users/1");
mvc.perform(request)
.andExpect(content().string(equalTo("{\"id\":1,\"name\":\"测试终极大师\",\"age\":30}")));
.andExpect(content().json("{\"id\":1,\"name\":\"测试终极大师\",\"age\":30}"));

// 6、del删除id为1的user
request = delete("/users/1");