如何使用Spring Boot测试Maven模块项目

如何使用Spring Boot测试Maven模块项目,第1张

如何使用Spring Boot测试Maven模块项目

我认为上下文测试应该在每个模块中可用,因此您可以及早发现电线和配置问题,而不必依赖完整的应用程序测试来查找它们。

我在同一模块中使用测试应用程序类来解决此问题。确保该主类位于您的 测试 目录中。

@SpringBootApplication()@EnableAutoConfiguration()public class TestApplication {    public static void main(String[] args) {        SpringApplication.run(TestApplication.class, args);    }}

您的上下文现在应该可以正常工作。

@RunWith(SpringRunner.class)//@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)//@TestExecutionListeners({DependencyInjectionTestExecutionListener.class})//@ContextConfiguration()@ActiveProfiles(profiles = {Profiles.WEB_REST})//@TestPropertySource("/config/rest.yml")@WebMvcTest(EntityController.class)@DirtiesContextpublic class ServicesControllerTest {    @Autowired    private MockMvc mvc;    @MockBean    private Controller controller;    @Test    public void testAll() throws Exception {        given(controller.process(null)).willReturn(null);        mvc.perform(get("/").accept(MediaType.APPLICATION_JSON))     .andExpect(status().isOk());    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621736.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存