以回调函数作为参数模拟函数

发布于 2024-11-02 04:02:42 字数 373 浏览 1 评论 0原文

我的代码结构如下:

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 技术交流群。

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

发布评论

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

评论(1

堇年纸鸢 2024-11-09 04:02:42

您必须模拟传递到 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?

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