Arth Clarence Jonn Limchiu
Arth Clarence Jonn Limchiu
I think you took the UserEntity class found in the data module literally as entity inside the domain layer. In the project you find three modules: data, presentation and domain....
@chetdeva You can also do this ``` private fun stubBookmarkProject(completable: Completable) { whenever(store.setProjectAsBookmarked(any())) .thenReturn(completable) } private fun stubUnBookmarkProject(completable: Completable) { whenever(store.setProjectAsUnbookmarked(any())) .thenReturn(completable) } ``` Because stubbing for data stores are...