在 Kotlin 和 JUnit 5 中重复 @ExtendWith

dah*_*ron 4 junit kotlin junit5

我在 Kotlin 项目中使用 JUnit 5 并观察到与文档不匹配的行为。在@ExtendWith测试类上使用多个注释时,我收到以下错误:

Repeatable annotations with non-SOURCE retention are not yet supported 在此处输入图片说明

ExtensionJUnit 文档部分中,这被列为有效选项。
我正在使用 Kotlin 1.3.10 和 JUnit 5.3.2

为什么我无法@ExtendWith在我的测试类上重复注释?

Leo*_*ima 8

Kotlin 尚不支持可重复注释。但是,您可以使用扩展注释:

@Extensions(
    ExtendWith(...),
    ExtendWith(...)
)
Run Code Online (Sandbox Code Playgroud)


小智 5

您可以将所有类放在一个注释中:

@ExtendWith(
    A::class,
    B::class
)
Run Code Online (Sandbox Code Playgroud)