其他分享
首页 > 其他分享> > junit5参数化

junit5参数化

作者:互联网

一、前言

  在我们做接口或者是app自动化的时候,有一个比较常见的场景就是测试流程一致,入参不同。而junit5也提供了很好的解决方案。

 

二、依赖的加入

  maven方式,使用junit5参数化需要导入junit-jupiter-params库

        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version>5.5.2</version>
            <scope>test</scope>
        </dependency>

 

三、参数源

参数源 说明
@ValueSource  
@EnumSource  
@MethodSource  
@CsvSource  
@CsvFileSource  
@ArgumentsSource  

标签:jupiter,CsvSource,params,参数,junit5,junit
来源: https://www.cnblogs.com/Durant0420/p/14783356.html