Ove Stoerholt
class Dummy class MyTest : KoinTest { @Test fun `should inject my components`() { startKoin { modules( module { scope(named("dillA")) { scoped { Dummy() } } }) } val scope = getKoin().getOrCreateScope("dill", named("dillA")) val scopeDummy = get<Dummy>() assertThat(scopeDummy).isNotNull } }
A modern programming language that makes developers happier.