BAEL-4642: corrected formatting (#10610)

This commit is contained in:
freelansam
2021-03-31 07:40:44 +05:30
committed by GitHub
parent eaa54b7b8b
commit be469d4566

View File

@@ -16,18 +16,20 @@ import org.springframework.test.web.servlet.MockMvc;
@AutoConfigureMockMvc
public class OpenApiPetsIntegrationTest {
private static final String PETS_PATH = "/pets/";
private static final String PETS_PATH = "/pets/";
@Autowired
private MockMvc mockMvc;
@Autowired
private MockMvc mockMvc;
@Test
public void whenReadAll_thenStatusIsNotImplemented() throws Exception {
this.mockMvc.perform(get(PETS_PATH)).andExpect(status().isNotImplemented());
}
@Test
public void whenReadAll_thenStatusIsNotImplemented() throws Exception {
this.mockMvc.perform(get(PETS_PATH))
.andExpect(status().isNotImplemented());
}
@Test
public void whenReadOne_thenStatusIsNotImplemented() throws Exception {
this.mockMvc.perform(get(PETS_PATH + 1)).andExpect(status().isNotImplemented());
}
@Test
public void whenReadOne_thenStatusIsNotImplemented() throws Exception {
this.mockMvc.perform(get(PETS_PATH + 1))
.andExpect(status().isNotImplemented());
}
}