Qual nome colocar?
BDD - Behavior-Driven Design/Development
@Test
@Transactional
public void dadoBoletos_quandoNaoTenhoBoletosNaBase_entaoRetornaZeroBoletos() throws Exception {
mvc.perform(get("/bankslips").contentType(MediaType.APPLICATION_JSON_UTF8_VALUE)).andExpect(status().isOk()).andExpect(jsonPath("$", hasSize(0)));
}Last updated
Was this helpful?