7
我想要編寫基本測試以在具有JSON有效內容的/ users URL上執行POST請求來創建用戶。我怎麼也找不到一個新的對象轉換爲JSON,到目前爲止,有這麼多,這顯然是錯誤的,但解釋的目的:創建一個JSON對象,以便在Spring Boot測試中發佈
@Test public void createUser() throws Exception {
String userJson = new User("My new User", "[email protected]").toJson();
this.mockMvc.perform(post("https://stackoverflow.com/users/").contentType(userJson)).andExpect(status().isCreated());
正是我一直在尋找:O) – chocksaway