Spring 3 替换 isDisabledInThisEnvironment

发布于 2024-08-27 05:54:33 字数 433 浏览 1 评论 0 原文

我目前正在转换一个测试类,该测试类将 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 方法的替代品是什么?

I'm currently converting a test class which extended the Spring class AbstractTransactionalSpringContextTests to Spring 3. This abstract class is now deprecated and I should use AbstractJUnit38SpringContextTests.

The test class had this method in it:

@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;
}

What is the replacement for this isDisabledInThisEnvironment method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幻想少年梦 2024-09-03 05:54:33

这个概念是通过@IfProfileValue实现的。适用于 JUnit 和 TestNG。

This concept is implemented with @IfProfileValue. Works with both JUnit and TestNG.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文