Skip to content

Instantly share code, notes, and snippets.

@ashley-figueira
Created November 30, 2020 16:29
Show Gist options
  • Save ashley-figueira/54cb87a68e251b4be5afb6e0d14e8fde to your computer and use it in GitHub Desktop.
Save ashley-figueira/54cb87a68e251b4be5afb6e0d14e8fde to your computer and use it in GitHub Desktop.
Custom Test Runner
class CustomTestRunner : AndroidJUnitRunner() {
override fun newApplication(cl: ClassLoader?, appName: 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