From 8de11809f0ebd1c499038061500369f57aa95758 Mon Sep 17 00:00:00 2001 From: Igor Wojda Date: Thu, 11 Jul 2024 16:34:32 +0200 Subject: [PATCH] Update context-isolation.md --- docs/reference/koin-core/context-isolation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 }