isDisabledInThisEnvironment

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方法的替代品是什么?

最佳答案

此概念通过@IfProfileValue实现。与JUnit和TestNG一起使用。

07-24 09:49