Fabio Collini
Fabio Collini
I have never used jmockdata, is there an English documentation somewhere? If it allows just to mock data it should work
Are you sure the error is on the object used in a `@BindsInstance` annotated method? However if you are using DaggerMock in a Kotlin project you should consider using something...
RuntimeException: Error invoking setter with parameter class Module on object DaggerComponentBuilder
Hi, can you paste the whole exception? It seems ok but it's hard to debug without the code or the full exception, maybe there is something interesting in the wrapped...
RuntimeException: Error invoking setter with parameter class Module on object DaggerComponentBuilder
The real error seems the last one, can you try to add the method `ApplicationComponent$Builder.baseActivityModule(com.rubicoin.invest.injection.module.BaseActivityModule)`? Even if you don't use it in the production code it's needed by DaggerMock to...
RuntimeException: Error invoking setter with parameter class Module on object DaggerComponentBuilder
I think you should add a builder for `ApplicationComponent` as well and then add the method `baseActivityModule(com.rubicoin.invest.injection.module.BaseActivityModule)` there
It should work, which error do you get? Can you try to change it to understand the single change that makes it fail?
Thanks for the PR! Is there an alternative way to do it and avoid using an api available only on Android 24+? The library is a java module so it...
DaggerMock is based on Mockito, it's not easy to port it to mockk. I am not sure if it's possible to use Mockito and mockk together, I'll try soon to...
Hi, sorry for the late answer :( I am not sure if you can create before the app is created because usually you need the application object to create the...
Hi, I have never seen a problem like this and I can't think of any reason why it should happen :( It's just another way of defining the mock, it...