Last active
August 21, 2019 10:14
-
-
Save vincent-paing/a745b4b5f70537ed73fe17c20b8132bb to your computer and use it in GitHub Desktop.
This file contains 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
runBlockingTest { | |
imageLoader = TestApplication.appComponent().imageLoader() | |
whenever(imageLoader.load(any())) | |
.thenReturn(object : RequestDisposable { | |
override fun isDisposed() = true | |
override fun dispose() {} | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment