Is it posible to create a partial mock using mockito-flex?

link|improve this question
feedback

1 Answer

Mockito-flex does not support partial mocks at this point. However you can make your mock object call original functions.

given(someone.something(any())).will(callOriginal());

You could add a convenience function that makes your mock call originals for all public functions and properties.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.