You should maybe call `presenter.onConfirmSubmit()...
# test
d
You should maybe call
presenter.onConfirmSubmit()
from the click handler in the view itself, that way the presenter is receiving a high-level UI interaction and is not coupled to the implementation of the view (it could be something else, not a button...). That kind of deciupling makes it much easier to test, and is giving your presenter the job of handling business logic not UI events...