首页 > 其他分享 >junit5

junit5

时间:2022-11-03 08:55:25浏览次数:57  
标签:void System 测试 println junit5 public out

引入依赖

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

编写测试类

public class JUnit5AppTest {

    @BeforeAll // 测试之前执行一次
    public static void beforeAll() {
        System.out.println("BeforeAll");
    }

    @BeforeEach // 每个方法运行之前执行
    public void beforeEach() {
        System.out.println("BeforeEach");
    }

    @AfterEach // 每个方法运行之后执行
    public void afterEach() {
        System.out.println("afterEach");
    }

    @AfterAll // 测试完成后执行一次
    public static void afterAll() {
        System.out.println("afterAll");
    }

    @Test // 需要测试的方法
    void aTest() {
        System.out.println("aTest");
    }

    @Test
    @Disabled // 该方法在进行类测试时会被忽略,但仍可单独执行测试
    void bTest() {
        System.out.println("bTest");
    }

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

标签:void,System,测试,println,junit5,public,out
From: https://www.cnblogs.com/Bin-x/p/16853225.html

相关文章

  • [Spring框架]spring新注解配置、spring整合JUnit5
    1.spring新注解配置1.@Configuration作用:配置类,等同于bean.xml文件获取容器时需要使用AnnotationApplicationContext(有@Configuration注解的类.class)属性:value:指定配......
  • allure+junit5遇到的一些问题
    java+junit5+allure之前引testng,还比较顺利,见上一篇博客,然后testng的注解和junit不一样,感觉junit5更好用一些,所以尝试java+junit5+allure首先看allure官网,需要在pom.xml......