以回调函数作为参数模拟函数
我的代码结构如下:
class A {
def a(x: () => Unit) { do something}
}
class B {
....
def foo() {
def x() { something }
a(x)
}
}
现在我想用模拟 A 对 B 类进行单元测试。
val a = mock[A]
def x () { ... }
a.a(x) atLeastOnce
上面的方法不起作用。因为这个新的 x 不是 foo() 中的 x。但是 foo 中的 x 是本地的,单元测试无法访问。除了将 x 从 foo 中移出之外,还有什么建议吗?
My code structure is like below:
class A {
def a(x: () => Unit) { do something}
}
class B {
....
def foo() {
def x() { something }
a(x)
}
}
Now I want to do unittest of class B with a mock A.
val a = mock[A]
def x () { ... }
a.a(x) atLeastOnce
The above doesn't work. Since this new x is not the x inside foo(). But the x inside foo is a local one, not accessible to unittest. Any suggestion except to move x out of foo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须模拟传递到 Aa 的函数文字请查看以下 SOF 问题的答案,看看这是否有帮助
如何在 Scala 中模拟带有函数参数的方法?
You have to mock out the function literal passed into A.a. Please look into the answer of the following SOF question and see whether that helps
How to mock a method with functional arguments in Scala?