I implemented the MVP pattern and it's working fine.
My understanding:
- Presenter must not contain any Android code
- Model must not contain any Android code
As result I can mock View and test Presenter and Model independently.
Is my understanding correct? Can Presenter and Model contain/reference android.content.Context
?