package com.mytest; import org.junit.jupiter.api.*; import static org.junit.jupiter.api.Assertions.assertEquals; public class Case2Test { //前置条件,只执行一次,方法必须时static @BeforeAll static void setUpAll(){ System.out.println("所有用例执行之前的前置动作--------"); } //后置处理,只执行一次,方法必须时static @AfterAll static void afterAll(){ System.out.println("所有用例执行完成后的后置动作--------"); } //在每条用例执行之前执行 @BeforeEach void beforeEach(){ System.out.println("我会在每条用例执行之前执行"); } //在每条用例执行后执行 @AfterEach void afterEach(){ System.out.println("我会在每条用例执行后执行"); } @Test void test1(){ System.out.println("第一个测试用例"); } @Test void test2(){ System.out.println("第二个测试用例"); } }
标签:流程,System,用例,println,执行,void,out From: https://www.cnblogs.com/ixtao/p/17649870.html