class KoinAndroidUnitTestRule( private val modules: List,) : TestWatcher() { constructor(vararg modules: Module) : this(modules.toList()) override fun starting(description: Description) { if (getKoinApplicationOrNull() == null) { startKoin { androidContext(InstrumentationRegistry.getInstrumentation().targetContext.applicationContext) modul..