diff --git a/docs/reference/koin-core/context-isolation.md b/docs/reference/koin-core/context-isolation.md index 63e95659e..99a38cba4 100644 --- a/docs/reference/koin-core/context-isolation.md +++ b/docs/reference/koin-core/context-isolation.md @@ -61,11 +61,12 @@ To test classes that are retrieving dependencies with `by inject()` delegate ove ```kotlin class MyClassTest : KoinTest { - // Koin Context used to retrieve bindings + // Koin Context used to retrieve dependencies override fun getKoin(): Koin = MyIsolatedKoinContext.koin @Before fun setUp() { + // Define custom Koin module val module = module { // Register dependencies }