That fuck shit the fascists are using
1package org.tm.archive.testing
2
3import android.app.Application
4import android.content.Context
5import androidx.test.runner.AndroidJUnitRunner
6import org.tm.archive.SignalInstrumentationApplicationContext
7
8/**
9 * Custom runner that replaces application with [SignalInstrumentationApplicationContext].
10 */
11@Suppress("unused")
12class SignalTestRunner : AndroidJUnitRunner() {
13 override fun newApplication(cl: ClassLoader?, className: String?, context: Context?): Application {
14 return super.newApplication(cl, SignalInstrumentationApplicationContext::class.java.name, context)
15 }
16}