springboot+junit4单元测试如何使用?
2020-12-13 04:36
阅读:473
标签:with 测试方法 oid ica boot 快捷键 test 注入 style 1.新建测试类。若用idea,可用alt+insert快捷键生成。 2.测试类加上这两个注解: @RunWith(SpringJUnit4ClassRunner.class) 也可以继承有这两个注解的其他测试类。 3.添加测试方法,名字随便起,例如public void test(){},加上这个注解: @Test 4.注入需要的bean。 springboot+junit4单元测试如何使用? 标签:with 测试方法 oid ica boot 快捷键 test 注入 style 原文地址:https://www.cnblogs.com/longmenzhitong/p/11116269.html
@SpringBootTest(classes = Application.class)
评论
亲,登录后才可以留言!