junit5常用注解

Posted 未来可期_Durant

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了junit5常用注解相关的知识,希望对你有一定的参考价值。

Junit5使用注解配置测试和扩展框架

@BeforeAll:表示在所有单元测试之前执行,只执行一次

@BeforeEach:表示在每个单元测试之前执行,假如测试类有n个测试方法,则被执行n次

@Test:表示方法是测试方法。但是与junit4的@Test不同,它的职责非常单一,不能声明任何属性,拓展的测试将会由Jupiter提供额外测试

@AfterEach:表示在每个单元测试之后执行,假如测试类有n个测试方法,则被执行n次

@AfterAll:表示在所有单元测试之后执行,只执行一次

示例:

package com.testcase;

import org.junit.jupiter.api.*;


public class Junit5DemoTest {

    @BeforeAll
    public static void initAll(){
        System.out.println("init all test");
    }

    @BeforeEach
    public void init(){
        System.out.println("init a test");
    }

    @Test
    void fun(){
        System.out.println("fun");
    }

    @AfterEach
    public void tearDown(){
        System.out.println("tear down a test");
    }

    @AfterAll
    public static void tearDownAll(){
        System.out.println("tear down all test");
    }
}

运行结果:

init all test

init a test
fun
tear down a test

tear down all test

Process finished with exit code 0

@RepeatedTest:表示方法额外执行的次数

package com.testcase;

import org.junit.jupiter.api.*;


public class Junit5DemoTest {

    @BeforeAll
    public static void initAll(){
        System.out.println("init all test");
    }

    @BeforeEach
    public void init(){
        System.out.println("init a test");
    }

    @Test
    @RepeatedTest(1)
    void fun(){
        System.out.println("fun");
    }

    @AfterEach
    public void tearDown(){
        System.out.println("tear down a test");
    }


    @AfterAll
    public static void tearDownAll(){
        System.out.println("tear down all test");
    }
}

运行结果:

@Disabled:表示测试类或测试方法不执行,类似于Junit4中的@Ignore

 @DisplayName:为测试类或测试方法设置展示名称

package com.testcase;

import org.junit.jupiter.api.*;

@DisplayName("Junit5演示类")
public class Junit5DemoTest {

    @BeforeAll
    public static void initAll(){
        System.out.println("init all test");
    }

    @BeforeEach
    public void init(){
        System.out.println("init a test");
    }

    @DisplayName("fun测试方法")
    @Test
    void fun(){
        System.out.println("fun");
    }

    @Test
    @Disabled
    @DisplayName("fun1测试方法")
    void fun1(){
        System.out.println("fun1");
    }

    @AfterEach
    public void tearDown(){
        System.out.println("tear down a test");
    }


    @AfterAll
    public static void tearDownAll(){
        System.out.println("tear down all test");
    }
}

运行结果:

@Tag:表示单元测试类别,类似于Junit4中的@Categories

@ParameterizedTest:表示方法是参数化测试

@Timeout:表示测试方法超过了指定时间将返回错误

@ExtendWith:为测试类或测试方法提供扩展类引用

@Nested:表示嵌套执行



以上是关于junit5常用注解的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot2---单元测试(Junit5)

SpringBoot——单元测试之JUnit5

SpringBoot——单元测试之JUnit5

SpringBoot——单元测试之JUnit5

[JUnit] JUnit5 基础 2 - 生命周期注解 和 DisplayName 注解

JUnit5用户手册~注解