Skip to content

Instantly share code, notes, and snippets.

@grumpyshoe
Last active January 18, 2019 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grumpyshoe/98ea7feb8b67d16c828e480c22322730 to your computer and use it in GitHub Desktop.
Save grumpyshoe/98ea7feb8b67d16c828e480c22322730 to your computer and use it in GitHub Desktop.
TestRunner using custom Application implementation
open class MockTestRunner : AndroidJUnitRunner() {
override fun onCreate(arguments: Bundle) {
StrictMode.setThreadPolicy(StrictMode.ThreadPolicy.Builder().permitAll().build())
super.onCreate(arguments)
}
@Throws(InstantiationException::class, IllegalAccessException::class, ClassNotFoundException::class)
override fun newApplication(cl: ClassLoader, className: String, context: Context): Application {
return super.newApplication(cl, TestAppApplication::class.java.name, context)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment