Java:如何在Spring Boot测试中实现@BeforeAll和@AfterAll?

时间:2019-02-25 17:15:37

标签: java spring-boot junit5

在junit5中,对于Spring Boot应用程序,还有其他方法可以使用@BeforeAll和@AfterAll逻辑吗?看起来像Spring Boot只是忽略那些注释。测试类以注释开头:

@ExtendWith(SpringExtension.class)
@SpringBootTest

我还尝试重写AbstractTestExecutionListener类的beforeTestClass和afterTestClass方法,并添加了注释:

@TestExecutionListeners(listeners = 
{DependencyInjectionTestExecutionListener.class, SearchManagerTest.class})

但是Spring Boot也会忽略它。

0 个答案:

没有答案