【软件测试开发】Junit5单元测试框架

本文介绍了如何使用JUnit5进行自动化测试,包括@Test、@BeforeEach、@BeforeAll、@AfterEach和@AfterAll注解的使用,断言如assertEquals、assertTrue、assertFalse等,以及测试用例执行顺序的控制。此外,还讲解了参数化测试,如单参数、多参数测试和动态参数测试的方法。
摘要由CSDN通过智能技术生成


● 实现自动化测试需要 selenium基本语法+Junit单元测试框架才能完成自动化测试
Junit是一个开源的Java语言的单元测试框架,Junit是Java方向使用最广泛的单元测试框架,使用Java开发者都应当学习Junit并且掌握单元测试的编写

selenium和Junit:假如要实现一个灯泡,selenium就是灯泡,Junit就是电源

首先需要在pom文件中引入Junit依赖:

    <dependencies>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>4.0.0</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.6</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/junit/junit -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.8.2</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-launcher -->
        <!-- https://mvnrepository.com/artifact/org.junit.platform/junit-platform-suite-api -->
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-suite</artifactId>
            <version>1.8.2</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-reporting</artifactId>
            <version>1.8.2</version>
            <scope>test</scope>
        </dependency>


    </dependencies>

1. 注解

@Test 注解

@Test 能够表示一个方法/用例
在不引入注解的情况下执行测试方法需要在Java main方法中去执行,使用注解之后只需要在要执行的测试方法上面加上 @Test 注解即可直接进行测试方法的执行:

public class JunitAutoTest {
   
   private final ChromeDriver chromeDriver=new ChromeDriver();
   public void start(){
   
       chromeDriver.get("https://www.baidu.com/");
   }
   @Test
    public void zhujieTest() throws InterruptedException {
   
       start();
       chromeDriver.findElement(By.cssSelector("#kw")).sendKeys("junit");
       chromeDriver.findElement
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值