使用springboot进行单元测试
springboot也可以像Junit一样来进行代码单元测试,来检验方法的正确性。
在maven中引入依赖
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <!--<version>5.0.5.RELEASE</version>--> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test</artifactId> </dependency>
添加测试类
@RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest(classes = DemoApplication.class) // classes=启动类 public class Test { @Autowired private TestBiz testBiz; @org.junit.Test public void test(){ testBiz.biz(); } }之后就可以进行单元测试了。