-
Notifications
You must be signed in to change notification settings - Fork 8
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
IOSuite test suite extended by MockFactory (scalamock) never executes #96
Comments
This comment was copied over from: disneystreaming/weaver-test#640 (comment) Hi. Thanks for raising an issue for visibility. In all frankness and at the risk of disappointing you, this is not something that I will dedicate time to investigate. If you find the root cause of the issue, and a potential fix, I'll happily look at a PR though :) |
This comment was copied over from: disneystreaming/weaver-test#640 (comment) Hello, sure, it's ok, i was just wondering if anyone already had similar problem and fixed it somehow. |
This comment was copied over from: disneystreaming/weaver-test#640 (comment) As a workaround i used |
This comment was copied over from: disneystreaming/weaver-test#640 (comment) The issue is that the Not a great implementation but this should get you going: type ExpectationException = Throwable
protected def newExpectationException(message: String, methodName: Option[Symbol]): ExpectationException =
new Throwable(s"$methodName: $message") |
This issue was copied over from: disneystreaming/weaver-test#640
It was opened by: DenisNovac
Weaver version: "0.8.1"
Scalamock version: "5.2.0"
In build.sbt:
Example code:
Test "test" will never be called while suite is extended by
MockFactory
. If you removewith MockFactory
- it will work fine.The text was updated successfully, but these errors were encountered: