-
Notifications
You must be signed in to change notification settings - Fork 202
Niek Haarman edited this page Aug 19, 2016
·
16 revisions
- Will this library help mocking closed (non-open) classes?
- Will this library help overcoming NullPointerExceptions?
- I get an error ‘Could not create an instance of class’. What should I do?
- “Will this library support Mockito `1.x`?:#mockito1
- When will this library reach `1.0.0`?
Q: Will this library help mocking closed (non-open) classes?
A: Mockito-Kotlin does not really add any extra functionality to Mockito. As such, you will still get exceptions when trying to mock closed classes. If possible, try to use interfaces instead.
Q: Will this library help overcoming NullPointerExceptions with `Mockito.any()`?
A: Passing `Mockito.any()` to a non-nullable parameter in Kotlin fails with a NullPointerException. Mockito-Kotlin tries to overcome this. See Null-safety for more info.
Q: I get an error ‘Could not create an instance of class’. What should I do?
A: Register an instance creator, as described in Null-safety.