当前位置:   article > 正文

使用springboot进行单元测试_functionalspringboottest

functionalspringboottest

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();
    }
}
之后就可以进行单元测试了。


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/977288
推荐阅读
相关标签
  

闽ICP备14008679号