如何在Java Junit中访问方法的内部变量?
我有一个生成随机数的函数,如下所示
public void method(){
int number = random();
// continue
}
我的问题是如何在不模拟随机方法的情况下访问此变量?
我的测试场景需要这个变量。
I have a function in which a random number is generated as shown below
public void method(){
int number = random();
// continue
}
My question is how can I access this variable without mocking random method?
I need this variable for my test scenarios.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您真的需要这是重构代码,可以做的一件事:
然后,您可以将其注入测试中,
但是,我假设您正在做类似的事情
,那么您可以使用grigntcaptor。
One thing you can do if you really need this is refactor your code:
You can then inject it in the test
However, I assume you're doing something like this
then you can use an ArgumentCaptor.
你不能,也不应该。
如果您想使其可重用,您应该将其提取到类中的
public static
变量中,并在其他地方重用它。另外,如果它是随机的,为什么需要重复使用它?只需在测试中对其进行随机化,或者提供 int 值作为方法参数,这最有意义。
You cannot, and you should not.
If you want to make it reusable, You should extract it to a
public static
variable within the class and reuse it elsewhere.Also, if it's random, why do you need to have it reused? Just randomize it in test, too, or provide the
int
value as a method parameter, which kind of makes the most sense.