You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
436 B
Kotlin
14 lines
436 B
Kotlin
package org.koitharu.kotatsu
|
|
|
|
import android.app.Application
|
|
import android.content.Context
|
|
import androidx.test.runner.AndroidJUnitRunner
|
|
import dagger.hilt.android.testing.HiltTestApplication
|
|
|
|
class HiltTestRunner : AndroidJUnitRunner() {
|
|
|
|
override fun newApplication(cl: ClassLoader?, name: String?, context: Context?): Application {
|
|
return super.newApplication(cl, HiltTestApplication::class.java.name, context)
|
|
}
|
|
}
|