PopovichT

Untitled

Apr 1st, 2021
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @Test
  2. void testCanFindTop10YoungestMasters() throws Exception {
  3.  
  4. when(service.findTopTenYoungMasters())
  5. .thenReturn(any());
  6.  
  7. mockMvc.perform(get("/master/youngest"))
  8. .andExpect(status().isOk())
  9. .andExpect(???)
  10. }
  11. Ожидается List<Master> (в котором 0 или больше элементов)
Advertisement
Add Comment
Please, Sign In to add comment