对于我使用以下模板的套房:
@RunWith(JUnitPlatform.class)
@SelectPackages("com.services.configuration")
@ExcludeTags({IntegrationTags.JPA, IntegrationTags.REST})
public class UnitTestSuite {
}
@RunWith
是一个 JUnit 4 依赖项,它来自
compile "org.junit.platform:junit-platform-runner:1.0.2"
是否可以在没有 JUnit 4 依赖的情况下拥有 JUnit 5 套件?这样我就可以从我的依赖项中删除 JUnit 4 了吗?
不能用适当的@ExtendsWith
扩展名替换吗?我只需要套房。