官方文档 - Migrating from JUnit 4

    在进行迁移的时候需要注意如下的变化:

    注解在 org.junit.jupiter.api 包中,断言在 org.junit.jupiter.api.Assertions 类中,前置条件在 org.junit.jupiter.api.Assumptions 类中。
    把@Before 和@After 替换成@BeforeEach 和@AfterEach。
    把@BeforeClass 和@AfterClass 替换成@BeforeAll 和@AfterAll。
    把@Ignore 替换成@Disabled。
    把@Category 替换成@Tag。
    把@RunWith、@Rule 和@ClassRule 替换成@ExtendWith。