Join Slack
Powered by
Any suggestions for a mocking tool that can fully ...
# spek
j
janvladimirmostert
03/08/2018, 10:15 AM
Any suggestions for a mocking tool that can fully mock Hiberbate and work well with Spek? Mockito seems to want all classes made open which is not ideal.
r
raniejade
03/08/2018, 10:18 AM
Mockito 2 has opt-in support to mock final classes:
https://github.com/mockito/mockito/wiki/What%27s-new-in-Mockito-2#mock-the-unmockable-opt-in-mocking-of-final-classesmethods
j
jk
03/08/2018, 10:27 AM
and now you can use the mockito-inline dependency to enable it, instead of having to create the MockMaker file:
testCompile 'org.mockito:mockito-inline:2.15.0'
j
janvladimirmostert
03/08/2018, 11:35 AM
Nice, I'll revisit Mockito then, thanks
@raniejade
and
@jk
13
Views
Open in Slack
Previous
Next