Skip to content

Instantly share code, notes, and snippets.

@GianpaMX
Created March 2, 2018 18:59
Show Gist options
  • Save GianpaMX/e1985e7158629b3f42102c1f999fc0c9 to your computer and use it in GitHub Desktop.
Save GianpaMX/e1985e7158629b3f42102c1f999fc0c9 to your computer and use it in GitHub Desktop.
class CustomTestRunner : AndroidJUnitRunner() {
@Throws(InstantiationException::class, IllegalAccessException::class, ClassNotFoundException::class)
override fun newApplication(cl: ClassLoader, className: String, context: Context): Application {
return super.newApplication(cl, TestApp::class.java!!.getName(), context)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment