Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation: Mocking 0-parameter function and parameterless function #453

Open
janjaali opened this issue Aug 1, 2022 · 1 comment
Open

Comments

@janjaali
Copy link

janjaali commented Aug 1, 2022

Referencing:

(() => fooMock.bar()).expects(10)

trait Foo {
  def bar(): Int
  def buz: Int
}
val fooMock = mock[Foo]
(() => fooMock.bar()).expects(10)
(() => fooMock.buz).expects(10)

Shouldn't that be more like:

trait Foo {
  def bar(): Int
  def buz: Int
}
val fooMock = mock[Foo]
(() => fooMock.bar()).expects().returns(10)
(() => fooMock.buz).expects().returns(10)

?

@Dichotomia
Copy link

Up

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants