Last active
October 19, 2017 22:40
-
-
Save dmytrodanylyk/c8fd0ec9ba8b271aa3f7a478736d9281 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
fun test() { | |
val dataProvider = Mockito.mock(DataProviderAPI::class.java) | |
val mockView = Mockito.mock(MainView::class.java) | |
val presenter = MainPresenter(mockView, dataProvider, Unconfined, Unconfined) | |
presenter.startPresenting() | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment