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.
13 lines
434 B
Kotlin
13 lines
434 B
Kotlin
package org.xtimms.etsudoku
|
|
|
|
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)
|
|
}
|
|
} |