Skip to content

Instantly share code, notes, and snippets.

@Audhil
Created August 23, 2020 16:50
Show Gist options
  • Save Audhil/edf72346469d5a65166509cbefdad371 to your computer and use it in GitHub Desktop.
Save Audhil/edf72346469d5a65166509cbefdad371 to your computer and use it in GitHub Desktop.
instrumentation tests - custom runner
class NewsRunner : AndroidJUnitRunner() {
override fun newApplication(
cl: ClassLoader?,
className: String?,
context: Context?
): Application {
return super.newApplication(cl, HiltTestApplication::class.java.name, context)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment