Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Test
- void testCanFindTop10YoungestMasters() throws Exception {
- when(service.findTopTenYoungMasters())
- .thenReturn(any());
- mockMvc.perform(get("/master/youngest"))
- .andExpect(status().isOk())
- .andExpect(???)
- }
- Ожидается List<Master> (в котором 0 или больше элементов)
Advertisement
Add Comment
Please, Sign In to add comment