第285天学习打卡(知识点回顾 springboot junit迁移指南 )

Posted doudoutj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第285天学习打卡(知识点回顾 springboot junit迁移指南 )相关的知识,希望对你有一定的参考价值。

知识点回顾

springboot 迁移指南

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

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

雷丰阳2021版SpringBoot2零基础入门springboot全套完整版(spring boot2)_哔哩哔哩_bilibili

以上是关于第285天学习打卡(知识点回顾 springboot junit迁移指南 )的主要内容,如果未能解决你的问题,请参考以下文章

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第300天学习打卡(知识点回顾 hashmap如何实现线程安全)

第266天学习打卡(知识点回顾 springmvc支持的返回值)

第223天学习打卡(知识点回顾 线程池)

第265天学习打卡(知识点回顾 springboot 复杂参数)