Skip to content

Instantly share code, notes, and snippets.

@fbcbl
Last active October 9, 2017 10:35
Show Gist options
  • Save fbcbl/e6405076f9597fbe79bdd3a43d5231aa to your computer and use it in GitHub Desktop.
Save fbcbl/e6405076f9597fbe79bdd3a43d5231aa to your computer and use it in GitHub Desktop.
kotlin_testing_pt2_on_method
fun <String> on(methodCall: LocationProvider.() -> String): OngoingStubbing<String> {
return try {
Mockito.`when`(mock.methodCall())
} catch(e: NullPointerException) {
throw Exception(....)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment