JMockit:检查方法的局部变量

发布于 2024-12-08 23:56:26 字数 306 浏览 0 评论 0原文

是否可以检查 JMockit 中方法的局部变量?

来源

void foo(){
    boolean isPresent = false;
    /// ... something here sets isPresent
}

测试

can I check the value of isPresent at the end of call of foo() using JMockit?

Is it possible to inspect local variables of a method in JMockit?

Source

void foo(){
    boolean isPresent = false;
    /// ... something here sets isPresent
}

Test

can I check the value of isPresent at the end of call of foo() using JMockit?

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

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

发布评论

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

评论(1

千纸鹤带着心事 2024-12-15 23:56:26

而不是尝试做一些晦涩的模拟机制。尝试将代码重构为可以测试的内容:

void foo(){
    boolean isPresent = isPresent();
}

boolean isPresent(){
   ....
}

另外,请考虑这一点。如果变量的值永远不会逃逸该方法并且不会引起其他影响(应该是可测试的),为什么要尝试测试它呢?或者为什么它会在那里?测试方法作用域变量的值为 x 没有任何值。测试该方法的结果是否为 y,因为变量 x 具有值。

Rather than trying to do some obscure mocking mechanism. Try refactoring the code to something that you can test:

void foo(){
    boolean isPresent = isPresent();
}

boolean isPresent(){
   ....
}

Also, consider this. If the variable's value never escapes the method and does not cause some other effect (which should be testable), why try to test it? Or why is it even there? Testing that a method scope variable's value is x has no value. Testing that the method resulted in y because the variable was x has value.

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