Spring 3 替换 isDisabledInThisEnvironment
我目前正在转换一个测试类,该测试类将 Spring 类 AbstractTransactionalSpringContextTests 扩展为 Spring 3。这个抽象类现已弃用,我应该使用 AbstractJUnit38SpringContextTests。
测试类中有这个方法:
@Override
protected boolean isDisabledInThisEnvironment(String testMethodName)
{
// Test is only needed for bugfixing and development. Do not check in with this flag on false.
return true;
}
这个 isDisabledInThisEnvironment 方法的替代品是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个概念是通过
@IfProfileValue
实现的。适用于 JUnit 和 TestNG。This concept is implemented with
@IfProfileValue
. Works with both JUnit and TestNG.