首页 > 解决方案 > 在 Kotlin 和 JUnit 5 中重复使用 @ExtendWith

问题描述

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

Repeatable annotations with non-SOURCE retention are not yet supported 在此处输入图像描述

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

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

标签: junitkotlinjunit5

解决方案


Kotlin 尚不支持可重复的注解。但是,您可以使用Extensions注释:

@Extensions(
    ExtendWith(...),
    ExtendWith(...)
)

推荐阅读