如何mock jcabi注解参数

How mock jcabi annotation parameters

我有一些代码如下。

@RetryOnFailure(attempts = Constant.RETRY_ATTEMPTS, delay = Constant.RETRY_DELAY, unit = TimeUnit.SECONDS)
public void method() {
    // some processing
    //throw exception if HTTP operation is not successful. (use of retry)
}

RETRY_ATTEMPTSRETRY_DELAY[的值=31=] 变量来自一个单独的 Constant class,它们是 int primitive。这两个变量都定义为 public static final.

如何在编写单元测试用例时覆盖这些值。实际值增加 运行 单元测试用例的时间。

我已经尝试了两种方法:都没有用

  1. Using PowerMock with Whitebox.setInternalState().
  2. Using Reflection as well.

编辑:
正如@yegor256 所提到的,这是不可能的,我想知道,为什么不可能?何时加载这些注释?

无法在运行时更改它们。为了使您的 method() 可测试,您应该做的是创建一个单独的 "decorator" class:

interface Foo {
  void method();
}
class FooWithRetry implements Foo {
  private final Foo origin;
  @Override
  @RetryOnFailure(attempts = Constant.RETRY_ATTEMPTS)
  public void method() {
    this.origin.method();
  }
}

然后,出于测试目的,使用 Foo 的另一个实现:

class FooWithUnlimitedRetry implements Foo {
  private final Foo origin;
  @Override
  @RetryOnFailure(attempts = 10000)
  public void method() {
    this.origin.method();
  }
}

你已经尽力了。不幸的是。